我是 wordpress 的新手,所以这可能是一个非常明显的问题。
我怎样才能只获得特定类别的帖子。
您也可以尝试以下其他方法
<?php
$post = query_posts( array ( 'category_name' => 'uncategorized') );
$post = query_posts( array ( 'category_slug' => 'uncategorized') );
$post = query_posts( array ( 'category' => 1) );
?>
试试这个:
<?php
$posts = get_posts(array('category' => 1));
?>
我鼓励你使用 WP_Query:
<?php
// The Query
$the_query = new WP_Query(
'category_name' => 'slug-of-category',
);
// The Loop
while ( $the_query->have_posts() ) :
$the_query->the_post();
echo '<li>' . get_the_title() . '</li>';
endwhile;
// Restore original Query & Post Data
wp_reset_query();
wp_reset_postdata();
?>
<?php
//here 1 is category id
$args = array( 'cat' => 1);
query_posts( $args );
while ( have_posts() ) : the_post();
the_title();
the_content();
endwhile;
wp_reset_query();
?>
<?php
$args = array(
'posts_per_page' => -1,
'offset'=> 1,
'category' => 5,
'orderby' => 'ID',
'order' => 'ASC'
);
$posts = get_posts($args);
foreach ( $posts as $post ) : setup_postdata( $post ); ?>
the_title();
the_excerpt();
the_permalink();
the_content();
endforeach;
wp_reset_postdata();
?>