Created
May 9, 2021 00:30
-
-
Save contemplate/51fe833d197d666aab1ec625a8706089 to your computer and use it in GitHub Desktop.
BBpress User Favorites Shortcode
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /*-- 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