Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: wp-signup vs register


Kunkel
Participant

@kunkel

and in the home folder here is functions.php

<?php

/* Register the widget columns */

register_sidebars( 1,

array(

‘name’ => ‘left-column’,

‘before_widget’ => ‘<div id=”%1$s” class=”widget %2$s”>’,

‘after_widget’ => ‘</div>’,

‘before_title’ => ‘<h2 class=”widgettitle”>’,

‘after_title’ => ‘</h2>’

)

);

register_sidebars( 1,

array(

‘name’ => ‘center-column’,

‘before_widget’ => ‘<div id=”%1$s” class=”widget %2$s”>’,

‘after_widget’ => ‘</div>’,

‘before_title’ => ‘<h2 class=”widgettitle”>’,

‘after_title’ => ‘</h2>’

)

);

register_sidebars( 1,

array(

‘name’ => ‘right-column’,

‘before_widget’ => ‘<div id=”%1$s” class=”widget %2$s”>’,

‘after_widget’ => ‘</div>’,

‘before_title’ => ‘<h2 class=”widgettitle”>’,

‘after_title’ => ‘</h2>’

)

);

register_sidebars( 1,

array(

‘name’ => ‘blog-sidebar’,

‘before_widget’ => ‘<div id=”%1$s” class=”widget %2$s”>’,

‘after_widget’ => ‘</div>’,

‘before_title’ => ‘<h2 class=”widgettitle”>’,

‘after_title’ => ‘</h2>’

)

);

/* Catch specific URLs */

function bp_show_home_blog() {

global $bp, $query_string;

if ( $bp->current_component == HOME_BLOG_SLUG ) {

$pos = strpos( $query_string, ‘pagename=’ . HOME_BLOG_SLUG );

if ( $pos !== false )

$query_string = preg_replace( ‘/pagename=’ . HOME_BLOG_SLUG . ‘/’, ”, $query_string );

query_posts($query_string);

$single_check = strpos( $query_string, ‘&name=’ );

if ( $single_check === false )

bp_core_load_template( ‘index’, true );

else

bp_core_load_template( ‘single’, true );

}

}

add_action( ‘wp’, ‘bp_show_home_blog’, 2 );

function bp_show_register_page() {

global $bp, $current_blog;

if ( $bp->current_component == REGISTER_SLUG && $bp->current_action == ” ) {

bp_core_signup_set_headers();

bp_core_load_template( ‘register’, true );

}

}

add_action( ‘wp’, ‘bp_show_register_page’, 2 );

function bp_show_activation_page() {

global $bp, $current_blog;

if ( $bp->current_component == ACTIVATION_SLUG && $bp->current_action == ” ) {

bp_core_activation_set_headers();

bp_core_load_template( ‘activate’, true );

}

}

add_action( ‘wp’, ‘bp_show_activation_page’, 2 );

/* Hook for custom theme functions via plugins */

do_action( ‘bp_home_theme_functions’ );

?>

Skip to toolbar