在wordpress中使用php中的短代码

时间:2014-05-02 05:37:32

标签: php wordpress

我正在尝试在wordpress中的php模板中使用短代码,并且使用以下代码不起作用。请帮忙:

<?php
 $args = array('post_type' => 'package', 'package-category' => 'South Africa',     'posts_per_page' => 6);
 $loop = new WP_Query($args);
 while($loop->have_posts()) : $loop->the_post();

$thumbnail = get_the_post_thumbnail();

$mc_content = <<<MCC
<div class="four columns gdl-package-grid2">
    <div class="package-content-wrapper">
        $thumbnail
    </div>
</div>
MCC;


echo do_shortcode('[tab_item title="ITEM_TITLE"]' .$mc_content. '[/tab_item]');



endwhile;
?>

1 个答案:

答案 0 :(得分:0)

你试过这个吗?

这可能有所帮助。

echo do_shortcode('[tab_item title="ITEM_TITLE"]' .addslashes($mc_content). '[/tab_item]');