[ Index ] |
PHP Cross Reference of BuddyPress |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * Blogs: User's "Sites" screen handler 4 * 5 * @package BuddyPress 6 * @subpackage BlogsScreens 7 * @since 3.0.0 8 */ 9 10 /** 11 * Load the "My Blogs" screen. 12 * 13 * @since 1.0.0 14 */ 15 function bp_blogs_screen_my_blogs() { 16 if ( !is_multisite() ) 17 return false; 18 19 /** 20 * Fires right before the loading of the My Blogs screen template file. 21 * 22 * @since 1.0.0 23 */ 24 do_action( 'bp_blogs_screen_my_blogs' ); 25 26 bp_core_load_template( apply_filters( 'bp_blogs_template_my_blogs', 'members/single/home' ) ); 27 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Thu Nov 21 01:00:57 2024 | Cross-referenced by PHPXref 0.7.1 |