Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- add_filter( 'bbp_get_topic_content', 'buddyboss_content_run_shortcode', 11, 2 );
- add_filter( 'bbp_get_reply_content', 'buddyboss_content_run_shortcode', 11, 2 );
- function buddyboss_content_run_shortcode( $content, $post_id ){
- $content = do_shortcode( $content );
- return $content;
- }
Add Comment
Please, Sign In to add comment