下面是一个小代码片段,让您开始学习。这将查询名为“custom\\u post\\u type”的最新自定义帖子类型。将此值更改为要查询的自定义帖子的名称。
<?php
$args = array(
\'post_type\' => \'custom_post_type\', // <-- make sure to use the name of your custom post type here
);
$query = new WP_Query($args);
if( $query->have_posts() ) {
while( $query->have_posts() ) {
the_post();
echo "<h1>" . get_the_title() . "</h1>";
}
}
wp_reset_postdata();
?>
不需要插件。如果你想对帖子的自定义查询做一些额外的阅读,你可以使用Wordpress Codex网站作为参考。以下是WP\\U查询页面:
https://codex.wordpress.org/Class_Reference/WP_Query