有点难以解释。
如何通过其他帖子查询使用do_shortcode
?
示例:
目前的帖子ID 1
可以使用帖子ID do_shortcode
中的2
吗?
因为我使用了 breadcrumb 功能。但有些页面我想从另一页获得面包屑。
我试过了:
query_posts('p=2');
do_shortcode('[breadcrumb]');
wp_reset_query();
它不起作用。
任何技巧?
答案 0 :(得分:0)
哦,我忘了while
与the_post
query_posts('p=2');
while(have_posts()):the_post();
$s = do_shortcode('[breadcrumb]'));
endwhile;
wp_reset_query();
return $s;