希望有人能帮我。我在WordPress安装中有一个自定义的帖子类型(“article”),我想在常规帖子提要中显示这些帖子以及默认帖子。
这是我当前的循环:
<?php
if ( have_posts() ) {
while ( have_posts() ) {
the_post();
global $more;
$more = 0;
//include the post template
locate_template( array( \'includes/post-template.php\' ), true, false );
}
locate_template( array( \'includes/post-pagination.php\' ), true, false );
}else {
_e( \'No posts available\', \'pexeto\' );
}
?>