Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter Eliot Akira

    (@miyarakira)

    Possibly related to this – the <br> codes are not displaying as normal. I think when the plugin displays {CONTENT}, the output should be filtered for shortcodes and line breaks…?

    Thread Starter Eliot Akira

    (@miyarakira)

    I think I solved the issue of running shortcodes inside the query loop. In the query-shortcode folder, inside init.php, there is a line that goes like this:

    echo implode( $posts_separator, $output );

    I change it to:

    echo implode( $posts_separator, do_shortcode($output) );

    So far, it seems to be doing the job.

    Plugin Author shazdeh

    (@shazdeh)

    Hi,

    You can set the “shortcode” parameter to 1 to run the shortcodes inside the contents. This parameter is disabled by default.

    [query posts_per_page="0" post_type="faq" lens="accordion" shortcode="1"]

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Shortcodes inside query loop’ is closed to new replies.