简单:修改查询。。。(并在顶部添加一些注释以制作模板…)
$query_default = new WP_Query( array(
\'orderby\' => \'menu_order\'
,\'order\' => \'ASC\'
,\'post_type\' => \'custompost\' // THIS IS WHAT YOU\'RE SEARCHING FOR
,\'post_status\' => \'publish\'
) );
if ( $query_default->have_posts() ) :
while ( $query_default->have_posts() ) : $query_default->the_post();
endwhile;
else : // else; no posts
_e( \'Nothing published so far.\', TEXTDOMAIN_CONSTANT );
endif; // endif; have_posts();
wp_reset_query();