Skip to content

Instantly share code, notes, and snippets.

@contemplate
Created May 9, 2021 00:30
Show Gist options
  • Select an option

  • Save contemplate/51fe833d197d666aab1ec625a8706089 to your computer and use it in GitHub Desktop.

Select an option

Save contemplate/51fe833d197d666aab1ec625a8706089 to your computer and use it in GitHub Desktop.
BBpress User Favorites Shortcode
/*-- BBpress User Favorites Shortcode [bbp-user-favorites] --*/
function bbp_user_favorites_shortcode( $atts ) {
$user_id = get_current_user_id();
ob_start();
if ( bbp_get_user_favorites( $user_id ) ) {
//bbp_get_template_part( 'pagination', 'topics' );
bbp_get_template_part( 'loop', 'topics' );
bbp_get_template_part( 'pagination', 'topics' );
} else { ?>
<aside class="bp-feedback bp-messages info">
<span class="bp-icon" aria-hidden="true"></span>
<p><?php _e( 'You currently have no favorite discussions.', 'buddyboss' ); ?></p>
</aside>
<?php }
$output = ob_get_clean();
return $output;
}
add_shortcode( 'bbp-user-favorites', 'bbp_user_favorites_shortcode');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment