Yoast Seo更改标题和说明中的参数页面

时间:2017-11-09 14:20:32

标签: wordpress yoast

与yoast seo我有这个设置 标题和元数据 - >标题模板:%% title %% %% page %% %% sep %% %% sitename %%

在在线网站上,我的结果标题是: 我的帖子标题 - 第2页,共230页 - 网站名称

可以更改参数%% page %%: 我的帖子标题 - 第2页 - 网站名称

我将从我的标题中删除230。感谢

1 个答案:

答案 0 :(得分:1)

您可以使用翻译过滤器执行此操作。

创建此目录和文件:
wp-content/mu-plugins/yoast-tweaks.php

<?php // Requires PHP 5.4+.
add_filter( 'gettext', function ( $translation, $original, $text_domain ) {
    if ( 'wordpress-seo' === $text_domain ) {
        if ( 'Page %1$d of %2$d' === $original ) {
            $translation = 'Page %1$d';
        }
    }
    return $translation;
}, 10, 3 );
相关问题