• All in One SEO 插件提取中文描述过短解决方法


    All in One SEO(也叫AIOSEO)是WordPress中最流行的SEO插件之一,功能非常强大,使初学者和专家都能轻松地在他们的网站上优化SEO。但是All in One SEO Pack有一个小问题就是对中文文章内容页截取的描述过短。

           All in One SEO的文章描述长度跟WordPress的摘要长度一样,默认是55个字符,要怎么才能把摘要长度设置长一些呢?网上也有很多方法教程,但是我看了一下基本上是针对All in One SEO 4.0.0之前的版本的修改方案.

    以下介绍一下针对4.0.0以上的版本修复方案:

    1. 编辑文件:/wp-content/plugins/all-in-one-seo-pack/app/Common/Traits/Helpers/WpContext.php

    2. 找到以下代码块

    /**
    * Returns the description based on the post content.
    *
    * @since 4.0.0
    *
    * @param  WP_Post|int $post The post (optional).
    * @return string            The description.
    */
    public function getDescriptionFromContent( $post = null ) {
    $post = ( $post && is_object( $post ) ) ? $post : $post = $this->getPost( $post );
    
    static $content = [];
    if ( isset( $content[ $post->ID ] ) ) {
    return $content[ $post->ID ];
    }
    
    if ( empty( $post->post_content ) || ! empty( $post->post_password ) ) {
    $content[ $post->ID ] = '';
    
    return $content[ $post->ID ];
    }
    
    $postContent          = $this->getPostContent( $post );
    $postContent          = wp_trim_words( $postContent, 55, '' );
    $postContent          = str_replace( ']]>', ']]>', $postContent );
    $postContent          = preg_replace( '#(<figure.*\/figure>|<img.*\/>)#', '', $postContent );
    $content[ $post->ID ] = trim( wp_strip_all_tags( strip_shortcodes( $postContent ) ) );
    
    return $content[ $post->ID ];
    }

    把wp_trim_words( $postContent, 55, ” )中的55改成你要的长度,比如改成wp_trim_words( $postContent, 120, ” )

    3. 以下是修改前和修改后的效果

    修改前;

     修改后:

    转载请注明出处:All in One SEO 插件提取中文描述过短解决方法 - 罗旭东

  • 相关阅读:
    5- FreeRTOS任务通知
    黑客专业术语认知
    IDEA新建一个spark项目
    动态规划-01背包问题新解(c)
    小程序:下拉刷新+上拉加载+自定义导航栏
    基于 OPLG 从 0 到 1 构建统一可观测平台实践
    赵运泓:12:5黄金行情走势分析
    NPM相关
    组件库都在使用CSS变量了
    软考入门级了解(时间,费用,流程),无广告成分
  • 原文地址:https://blog.csdn.net/rohsuton/article/details/125406685