对我来说效果很好!!代码将把帖子(在CPT UI下)带到任何页面模板。
<?php
$loop = new WP_Query( array(
\'post_type\' => \'specialoffers\',
\'cat\' => \'12\', // Whatever the category ID is for your aerial category
\'posts_per_page\' => 10,
\'orderby\' => \'date\', // Purely optional - just for some ordering
\'order\' => \'DESC\' // Ditto
) );
while ( $loop->have_posts() ) : $loop->the_post(); ?>