18

我在我的页面模板中使用它来按类别获取帖子:

<?php 
        if (is_page(19)){
            ?>
            <ul>
            <?php
                global $post;
                $args = array( 'category' => 'Testimonial' );
                $myposts = get_posts( $args );
                foreach( $myposts as $post ) :  setup_postdata($post); ?>
                    <li class="testimonial"><?php the_content(); ?></li><br/>
                <?php endforeach; ?>
            </ul>
        <?php } ?>

但它正在检索所有帖子。不仅仅是那些标有推荐信的。知道我做错了什么吗?

4

5 回答 5

26

'category_name'=>'this cat' 也有效,但未在 WP 文档中打印

于 2013-09-30T10:23:19.680 回答
16

在这里检查:https ://developer.wordpress.org/reference/functions/get_posts/

注意:category参数需要是类别的ID,而不是类别名称。

于 2012-08-10T21:11:31.577 回答
1

您可以在参数中使用“category_name”。 http://codex.wordpress.org/Template_Tags/get_posts

注意: category_name 参数需要是一个字符串,在本例中为类别名称。

于 2014-11-19T11:30:18.590 回答
1
add_shortcode( 'seriesposts', 'series_posts' );

function series_posts( $atts )
{ ob_start();

$myseriesoption = get_option( '_myseries', null );

$type = $myseriesoption;
$args=array(  'post_type' => $type,  'post_status' => 'publish',  'posts_per_page' => 5,  'caller_get_posts'=> 1);
$my_query = null;
$my_query = new WP_Query($args);
if( $my_query->have_posts() ) {
echo '<ul>'; 
while ($my_query->have_posts()) : $my_query->the_post();
echo '<li><a href="';
echo the_permalink();
echo '">';
echo the_title();
echo '</a></li>'; 
endwhile;
echo '</ul>'; 
}
wp_reset_query();




return ob_get_clean(); }

//这将生成一个在您的网站上使用的简码函数 [seriesposts]

于 2015-10-14T17:38:27.113 回答
1

创建一个分类字段类别(字段名称 = post_category)并将其导入您的模板中,如下所示:

<?php
          $categ = get_field('post_category');  
          $args = array( 'posts_per_page' => 6,
         'category_name' => $categ->slug );
          $myposts = get_posts( $args );
          foreach ( $myposts as $post ) : setup_postdata( $post ); ?>
            //your code here
          <?php endforeach; 
          wp_reset_postdata();?>
于 2018-01-05T11:28:30.577 回答