需要对我的WordPress解决方案发表评论以在家中显示粘贴帖子(类别链接为标题而不是帖子链接)

时间:2018-03-14 17:48:31

标签: wordpress

我认为我应该与所有人分享这个解决方案..

我正在添加一个解决方案,只显示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>

0 个答案:

没有答案