php Yoast SEO删除面包屑链接

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php Yoast SEO删除面包屑链接相关的知识,希望对你有一定的参考价值。

<?php

/**
 * Remove "Products" from Yoast SEO breadcrumb
 *
 * @param $links
 *
 * @return mixed
 */
function filter_wpseo_breadcrumb_links( $links ) {
    foreach($links as $key => $value){
        if(isset($value['ptarchive']) && $value['ptarchive'] == 'product'){
            unset($this_crumbs[$key]);
        }
    }
    return $links;
}
add_filter( 'wpseo_breadcrumb_links', 'filter_wpseo_breadcrumb_links', 10, 1 );

以上是关于php Yoast SEO删除面包屑链接的主要内容,如果未能解决你的问题,请参考以下文章

php 从Yoast SEO Video中删除Yandex标签

php Yoast SEO在breadcrumb中添加第一个链接

php Wordpress:过滤管理员列并删除yoast seo列

php 删除WordPress中的[All in One SEO Pack]或[Yoast SEO] HTML评论(适用于functions.php)

php 删除或修改Yoast SEO prev或下一个URL。只复制您需要的代码部分。

php 在Yoast SEO中更改或删除OpenGraph输出的代码片段。此代码中有多个代码段。