您想做的事情可以通过以下方式实现WP_Query
班
$query = new WP_Query(array(
\'post_type\' => \'quote2\',
\'posts_per_page\' => 10, // or something else
));
现在您可以使用
$query
例如:
if ($query->have_posts()) {
while ($query->have_posts()) {
$query->the_post;
?>
<h1><?php the_title(); </h1>
<?php the_content();
<?php
}
else {
// No posts...
}
如果您只想访问这些帖子,可以通过
$query->posts
.