要显示帖子类型的自定义列表,您必须在页面projets中编写自己的循环。php主题文件。
例如:
<div class="loop center">
<?php
$args = array(
\'post_type\' => \'\',
\'posts_per_page\' => \'\',
);
$query = new WP_Query( $args );
if ( $query->have_posts() ) :
while ( $query->have_posts() ) : $query->the_post();
get_template_part(\'content\');
endwhile;
get_template_part(\'pagination\');
endif; ?>
</div>
替换的值
post_type 和
posts_per_page 使用自定义值。
您还可以在Wordpress Codex中找到其他参数WP_Query