0, 'post_title' => bp_get_directory_title( 'members' ), 'post_author' => 0, 'post_date' => 0, 'post_content' => '', 'post_type' => 'page', 'post_status' => 'publish', 'is_page' => true, 'comment_status' => 'closed' ) ); } /** * Filter the_content with the members index template part. * * @since 1.7.0 */ public function directory_content() { return bp_buffer_template_part( 'members/index', null, false ); } /** Single ****************************************************************/ /** * Add custom template hierarchy to theme compat for member pages. * * This is to mirror how WordPress has * {@link https://codex.wordpress.org/Template_Hierarchy template hierarchy}. * * @since 1.8.0 * * @param string $templates The templates from * bp_get_theme_compat_templates(). * @return array $templates Array of custom templates to look for. */ public function single_template_hierarchy( $templates ) { // Setup some variables we're going to reference in our custom templates. $user_nicename = buddypress()->displayed_user->userdata->user_nicename; /** * Filters the template hierarchy for theme compat and member pages. * * @since 1.8.0 * * @param array $value Array of template paths to add to hierarchy. */ $new_templates = apply_filters( 'bp_template_hierarchy_members_single_item', array( 'members/single/index-id-' . (int) bp_displayed_user_id() . '.php', 'members/single/index-nicename-' . sanitize_file_name( $user_nicename ) . '.php', 'members/single/index-action-' . sanitize_file_name( bp_current_action() ) . '.php', 'members/single/index-component-' . sanitize_file_name( bp_current_component() ) . '.php', 'members/single/index.php' ) ); // Merge new templates with existing stack // @see bp_get_theme_compat_templates(). $templates = array_merge( (array) $new_templates, $templates ); return $templates; } /** * Update the global $post with the displayed user's data. * * @since 1.7.0 */ public function single_dummy_post() { bp_theme_compat_reset_post( array( 'ID' => 0, 'post_title' => bp_get_displayed_user_fullname(), 'post_author' => 0, 'post_date' => 0, 'post_content' => '', 'post_type' => 'page', 'post_status' => 'publish', 'is_page' => true, 'comment_status' => 'closed' ) ); } /** * Filter the_content with the members' single home template part. * * @since 1.7.0 */ public function single_dummy_content() { return bp_buffer_template_part( 'members/single/home', null, false ); } }