站长网 教程 wordpress分类文章置顶首页不可置顶

wordpress分类文章置顶首页不可置顶

昨晚做本博客的工作日志,分类置顶文章,我想要的效果是在分类下文章是置顶的,但是首页却不要置顶,我在网上找到了分类文章置顶,但是都没解决首页文章不置顶的问题,都说说改首页sticky。所以我就想到了一个办法,第一步用这个分类置顶,第二步,让首页不

昨晚做本博客的工作日志,分类置顶文章,我想要的效果是在分类下文章是置顶的,但是首页却不要置顶,我在网上找到了分类文章置顶,但是都没解决首页文章不置顶的问题,都说说改首页sticky。所以我就想到了一个办法,第一步用这个分类置顶,第二步,让首页不显示置顶文章,就这样解决了。目前只是占时需要,并不需要多么强大的功能,所以就这样勉强用着。

第一步将下面的代码添加到主题的 functions.php 文件即可:

add_filter('the_posts',  'putStickyOnTop' );

function putStickyOnTop( $posts ) {

  if(is_home() || !is_main_query() || !is_archive())

    return $posts;

 

  global $wp_query;

 

  $sticky_posts = get_option('sticky_posts');

 

  if ( $wp_query->query_vars['paged'] <= 1 && is_array($sticky_posts) && !empty($sticky_posts) && !get_query_var('ignore_sticky_posts') ) {        $stickies1 = get_posts( array( 'post__in' => $sticky_posts ) );

    foreach ( $stickies1 as $sticky_post1 ) {

      // 判断当前是否分类页

      if($wp_query->is_category == 1 && !has_category($wp_query->query_vars['cat'], $sticky_post1->ID)) {

        // 去除不属于本分类的文章

        $offset1 = array_search($sticky_post1->ID, $sticky_posts);

        unset( $sticky_posts[$offset1] );

      }

      if($wp_query->is_tag == 1 && has_tag($wp_query->query_vars['tag'], $sticky_post1->ID)) {

        // 去除不属于本标签的文章

        $offset1 = array_search($sticky_post1->ID, $sticky_posts);

        unset( $sticky_posts[$offset1] );

      }

      if($wp_query->is_year == 1 && date_i18n('Y', strtotime($sticky_post1->post_date))!=$wp_query->query['m']) {

        // 去除不属于本年份的文章

        $offset1 = array_search($sticky_post1->ID, $sticky_posts);

        unset( $sticky_posts[$offset1] );

      }

      if($wp_query->is_month == 1 && date_i18n('Ym', strtotime($sticky_post1->post_date))!=$wp_query->query['m']) {

        // 去除不属于本月份的文章

        $offset1 = array_search($sticky_post1->ID, $sticky_posts);

        unset( $sticky_posts[$offset1] );

      }

      if($wp_query->is_day == 1 && date_i18n('Ymd', strtotime($sticky_post1->post_date))!=$wp_query->query['m']) {

        // 去除不属于本日期的文章

        $offset1 = array_search($sticky_post1->ID, $sticky_posts);

        unset( $sticky_posts[$offset1] );

      }

      if($wp_query->is_author == 1 && $sticky_post1->post_author != $wp_query->query_vars['author']) {

        // 去除不属于本作者的文章

        $offset1 = array_search($sticky_post1->ID, $sticky_posts);

        unset( $sticky_posts[$offset1] );

      }

    }

 

    $num_posts = count($posts);

    $sticky_offset = 0;

    // Loop over posts and relocate stickies to the front.

    for ( $i = 0; $i < $num_posts; $i++ ) {

      if ( in_array($posts[$i]->ID, $sticky_posts) ) {

        $sticky_post = $posts[$i];

本文来自网络,不代表站长网立场,转载请注明出处:https://www.tzzz.com.cn/html/sheji/jiaocheng/2021/1103/19104.html

作者: dawei

【声明】:站长网内容转载自互联网,其相关言论仅代表作者个人观点绝非权威,不代表本站立场。如您发现内容存在版权问题,请提交相关链接至邮箱:bqsm@foxmail.com,我们将及时予以处理。
联系我们

联系我们

0577-28828765

在线咨询: QQ交谈

邮箱: xwei067@foxmail.com

工作时间:周一至周五,9:00-17:30,节假日休息

返回顶部