我需要从具有名称的类别中提取所有帖子。我使用的主题是Twenty Fourteen。
答案 0 :(得分:1)
以下可以工作: -
// The Query
$the_query = new WP_Query('cat=-1'); // where -1 will be ID of Un-categorized category
// The Loop
if ( $the_query->have_posts() ) {
echo '<ul>';
while ( $the_query->have_posts() ) {
if(get_the_title() != ""){ // this will check for blank name
$the_query->the_post();
echo '<li>' . get_the_title() . '</li>';
}
}
echo '</ul>';
} else {
// no posts found
}
/* Restore original Post Data */
wp_reset_postdata();