QuickLaTeX bbPress BuddyPress
-
Hi, add this to your theme functions.php to enable QuickLatex on bbPress and BuddyPress.
/* get QuickLaTeX to work with bbpress*/ add_filter('bbp_get_reply_content', 'quicklatex_parser', 10, 2); add_filter('bbp_get_topic_content', 'quicklatex_parser', 10, 2); /* get QuickLaTeX to work with buddypress*/ add_filter( 'bp_get_activity_content_body', 'quicklatex_parser', 10, 2 ); add_filter('bbp_activity_topic_create_excerpt','bp_add_slash') ; add_filter('bbp_activity_reply_create_excerpt','bp_add_slash') ; function bp_add_slash($content){ return str_replace('\\','\\\\',$content) ; }
- The topic ‘QuickLaTeX bbPress BuddyPress’ is closed to new replies.