mirror of
https://gh.wpcy.net/https://github.com/buddypress/buddypress.git
synced 2026-05-31 05:04:29 +08:00
git-svn-id: https://buddypress.svn.wordpress.org/tags/default-home-theme@993 cdf35c40-ae34-48e0-9cc9-0c9da1808c22
91 lines
No EOL
2.2 KiB
PHP
91 lines
No EOL
2.2 KiB
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' );
|
|
|
|
|
|
?>
|