0

似乎无法为我认为微不足道的事情找到正确的答案。

我有一些这样排列的类别......

父类 1
- 子类 1
- 子类 2
- 子类 3

...而且我有一些属于子类别 2 的帖子。我希望我的页面显示我当前所在类别的所有帖子。

这就是我现在正在做的事情:

<?php
query_posts('cat=2&showposts=10');
    if (have_posts()) : while (have_posts()) : the_post(); ?>      
    <div class="timeline">
    <h3><?php the_title(); ?></h3>
    <?php the_content();?>
    <?php endwhile; else: ?>
    <?php _e('No Posts Sorry.'); ?>
    <?php endif; ?>
</div>

如您所见,我必须手动指定类别(cat = 2),但我希望它自动检测我已经在的类别并显示帖子(这样,如果我在不同的类别中,它将显示那些帖子)。

有什么建议么?

提前致谢。(SO 社区 = 很棒的酱汁)。

4

6 回答 6

10

试试下面的代码:

<?php
$current_cat_id  = get_query_var('cat');
$showposts = 10;
$args = array('cat' => $current_cat_id, 'orderby' => 'post_date', 'order' => 'DESC', 'posts_per_page' => $showposts,'post_status' => 'publish');
query_posts($args);
    if (have_posts()) : while (have_posts()) : the_post(); ?>      
    <div class="timeline">
    <h3><?php the_title(); ?></h3>
    <?php the_content();?>
    <?php endwhile; else: ?>
    <?php _e('No Posts Sorry.'); ?>
    <?php endif; ?>
</div>
于 2012-07-02T13:19:13.130 回答
2

如果您使用category.php,您可以省略query_posts,它会自动为您填写帖子。

于 2012-07-02T03:12:12.020 回答
1
    <?php
    // Start the loop.
    $categories = get_categories('child_of=1');//Parents category id
                        foreach ($categories as $cat) {

                            $option = '<a href="/category/archives/'.$cat->category_nicename.'">';
                            $option .= $cat->cat_name;//parents sub category name
                            $option .= '</a>';
                            echo $option;
                            query_posts('cat=$cat->cat_ID&showposts=10');
if (have_posts()) : while (have_posts()) : the_post(); ?>      

<h3><?php the_title(); ?></h3>
<?php the_content();?>
<?php endwhile; else: ?>
<?php _e('No Posts Sorry.'); ?>
<?php endif;  }?>
于 2016-04-06T06:14:33.693 回答
0
<ul>
<?php
global $post;

$args = array( 'posts_per_page' => 5, 'offset'=> 0, 'category' => 1 );
// 1 is a cat id.
// 

$myposts = get_posts( $args );

foreach( $myposts as $post ) : setup_postdata($post); ?>
<li>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
</li>
<?php endforeach; ?>

</ul>
于 2013-07-18T06:39:31.563 回答
0

试试这个,这是更好的解决方案,您还可以使用它按类别 ID 显示相关帖子...

只需使用此行调用下面提到的函数。把它放在你的模板或 page.php/single.php 文件中。

通过放置此行调用:related_post_title('enter cat id here..');

这是函数并将其放入function.php文件中。

相关帖子功能:

function related_post_title($cat_id){

    $cat = $cat_id;

    // Check if it is page only
    if ( is_page() || is_single()) {
        $args=array(
            'cat'  =>  $cat,
            'order'  =>  DESC,
            'orderby'  =>  rand,
            'post__not_in'  =>  array($post->ID),
            'posts_per_page'  =>  9999,
            '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(); ?>

                <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>

            <?php

            endwhile;

            echo '</ul>';
        }
        wp_reset_query();
    }
}

如果有任何疑问请告诉我,我会帮助你...

于 2014-11-11T13:20:08.613 回答
0

尝试

$args = array( 'posts_per_page' => 5, 'offset'=> 0, 'cat' => 1 );
于 2014-05-06T13:03:36.273 回答