Skip to content

Instantly share code, notes, and snippets.

@raftaar1191
Created September 5, 2023 09:27
Show Gist options
  • Save raftaar1191/8ea7675158bbcba40689749a70820e05 to your computer and use it in GitHub Desktop.
Save raftaar1191/8ea7675158bbcba40689749a70820e05 to your computer and use it in GitHub Desktop.
Filter to allow shortcode to render inside forms discussion
/**
* Filter to run the shortcode into the formds
*/
function bbp_get_topic_content_callback( $content ) {
return do_shortcode( $content );
}
add_filter( 'bbp_get_topic_content', 'bbp_get_topic_content_callback', 100000 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment