删除Rank Math WordPress SEO插件中显示的:This XML Sitemap is generated by Rank Math WordPress SEO Plugin

在模板functions.php文件放入任意一段代码:

/**
* Filter to remove sitemap credit.
*
* @param boolean Defaults to false.
*/
add_filter( ‘rank_math/sitemap/remove_credit’, ‘__return_true’);
/**
 * Filter to remove sitemap credit.
 *
 * @param boolean Defaults to false.
 */
add_filter( 'rank_math/sitemap/remove_credit', '__return_true');

要隐藏屏幕截图中指向的句子,可以使用以下代码:

$rm_sitemap_counter = 0;
add_filter( 'rank_math/sitemap/remove_credit', function() {
    global $rm_sitemap_counter;
    $rm_sitemap_counter++;
    if ( $rm_sitemap_counter == 2 ) {
        echo '<style type="text/css">#description p { display: none; }</style>';
    }
    return false;
}, 10, 1 );

如果您想完全隐藏蓝色标题部分,请尝试以下代码:

$rm_sitemap_counter = 0;
add_filter( 'rank_math/sitemap/remove_credit', function() {
    global $rm_sitemap_counter;
    $rm_sitemap_counter++;
    if ( $rm_sitemap_counter == 2 ) {
        echo '<style type="text/css">#description { display: none; }</style>';
    }
    return true;
}, 10, 1 );

 

© 版权声明
THE END
請多多支持
点赞0
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情图片

    暂无评论内容