embedding in template
-
I’m trying to place this in template as well. I saw another post about it, but i can’t see what i’m doing wrong.
<?php echo do_shortcode ('[accordion]'); ?> <?php $args = array( 'posts_per_page' => '-1', 'post_type' => 'post', 'post_status' => 'publish', 'category__in' => $quicksand_categories ); $query = new WP_Query( $args ); foreach ($query->posts as $item) { $categories = wp_get_post_categories($item->ID); ?> <?php echo do_shortcode ('[accordion-item title="'.get_the_title($item->ID).'"]'.the_content().'[/accordion-item]'); ?> <?php } ?> <?php echo do_shortcode ('[/accordion]'); ?>
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘embedding in template’ is closed to new replies.