我问这个问题是为了this one.
我在中有此查询功能functions.php
但我不想改变functions.php
(CPT除外)。
我想通过快捷码直接从WP GUI打印相同的数据。
a应该如何functions.php
是否将查询函数转换为查询快捷码?
$posts = get_posts(array(
"post_type"=>"book_pages",
"post_status"=>"publish",
"posts_per_page"=>-1
));
if ($posts && count($posts)>0)
{
global $post;
foreach ($posts as $post)
{
setup_postdata($post);
the_title(); //prints out the title of this post
}
wp_reset_postdata();
}