bbp_shortcodes
-
I am trying to figure out how to allow custom shortcodes in topic posts. So far i’ve been trying to use bbp_shortcodes like this.
function bbp_custom_shortcode($codes) {
$codes[] = array(‘item’ => ‘item_func’);
return $codes;
}
add_filter( ‘bbp_shortcodes’, ‘bbp_custom_shortcode’);
The codes array is appended but it does nothing Can you explain how to do it properly.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.