我认为我应该与所有人分享这个解决方案..
我正在添加一个解决方案,只显示index.php中的粘贴帖子,以及使用The Loop转到类别页面(不是帖子页面)的链接,并动态地向帖子添加类,以便为它们编写简单的css。
在索引中添加代码。
<div class="home col-xs-12" >
<?php
while(have_posts()) {
the_post();
if ( is_sticky()) {
$postid = get_the_ID();
global $post;
$post_slug=$post->post_name;
?>
<div id="<?php echo $postid.'csscid'.$post_slug?>" class="content-block col-xs-12">
<h1 ><?php echo get_the_category_list(', '); ?></h1>
<hr class="color-strip">
<p><?php echo wp_trim_words(get_the_content(), 11); ?></p>
<div class="tags"><ul><li><?php the_tags(); ?></li></ul></div>
</div>
<hr/>
<?php }
}?>
</div>