arguments of echo_crp function have no effect
-
On a specific spot in my bbpress forum, I would like to add related posts. I created the following code, which does show related posts on the right spot, but the arguments have no effect. What am I doing wrong? Thanks!
add_action( 'bbp_template_after_replies_loop', 'jc_bbp_template_after_replies_loop' ); function jc_bbp_template_after_replies_loop() { $args = array( 'limit' => 8, 'show_metabox' => false, ); echo_crp($args); }
Viewing 15 replies - 1 through 15 (of 15 total)
Viewing 15 replies - 1 through 15 (of 15 total)
- The topic ‘arguments of echo_crp function have no effect’ is closed to new replies.