另一个查询执行do_shortcode

时间:2016-05-18 12:10:00

标签: php wordpress shortcode

有点难以解释。

如何通过其他帖子查询使用do_shortcode

示例:

目前的帖子ID 1可以使用帖子ID do_shortcode中的2吗?

因为我使用了 breadcrumb 功能。但有些页面我想从另一页获得面包屑。

我试过了:

query_posts('p=2');
do_shortcode('[breadcrumb]');
wp_reset_query();

它不起作用。

任何技巧?

1 个答案:

答案 0 :(得分:0)

哦,我忘了whilethe_post

query_posts('p=2');
while(have_posts()):the_post();
$s = do_shortcode('[breadcrumb]'));
endwhile;
wp_reset_query();
return $s;