来自主页上的类别的帖子,带有类别存档页面默认的css

时间:2017-03-24 作者:Tarrmie de Man

我正在努力完成一些事情。

首先,我在我的博客上使用了两个主题,移动主题是carrington,我想在主题的页脚或最近的帖子之后添加五篇来自某个类别或标签的帖子,例如“Tech”。

更新:我认为我正在努力实现的是:

类别归档页和标签归档与主页具有相同的设计(css)。

我只需要复制一个类别页面归档的设计和内容,并将其放置在我主页的页脚部分。

请帮忙The first section shows recent post then the other section (IN THE NEWS) shows post from a particular category with the design and css of the original post page. That is what am trying to achieve

3 个回复
最合适的回答,由SO网友:Tarrmie de Man 整理而成

我的任务是通过使用上面建议的部分代码实现的。

我把xxxxx改成了我的类别slug,然后在代码下面我发布了我所有的循环,就是这样。

因此,如果您希望它具有您的贴子页面设计:

复制此

复制整个循环,粘贴在下面并保存

SO网友:TrubinE

    $args = array(
        \'posts_per_page\' => 5,
        \'cat\' => 77 // 77 - id category
    );

    $query = new WP_Query( $args );

    // loop
    if ( $query->have_posts() ) {
        while ( $query->have_posts() ) {
            $query->the_post();
echo \'<li>\';
the_post_thumbnail();
            echo \'<a href="\'.get_permalink().\'">\' . get_the_title() . \'</a></li>\';
        }
    } else {
        // posts not fount
    echo \'posts not fount\';
    }
    wp_reset_postdata();
将类别id(77)替换为所需类别的id。您需要将此代码添加到模板中。在要显示记录的位置(例如:index.php)。

SO网友:Md. Amanur Rahman

<?php query_posts(\'category_name=xxxxxxxxxxxx&order=dsc&showposts=12\'); ?>
        <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
                <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a>
<br clear="all"><br />
        <?php endwhile; ?>
        <?php endif; ?>
在这里您可以看到category\\u name=xxxxxxxxxxxx在这里将xxxx更改为您的类别slug,您就完成了

相关推荐

WP_DROPDOWN_CATEGORIES-如何在Widget中保存?

我想用wp_dropdown_categories 在自定义小部件中。所有内容都显示得很好,但由于某些原因,无法正确保存。这是form() 和update() 小部件的功能-我做错什么了吗?public function form( $instance ) { /* Set up some default widget settings. */ $defaults = array( \'title\' => \'Classes by Category\' );&#x