text 将架构添加到yoast seo breadcrumb
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text 将架构添加到yoast seo breadcrumb相关的知识,希望对你有一定的参考价值。
<?php
/**
* Add schema to yoast seo breadcrumb
*/
add_filter('wpseo_breadcrumb_links', 'jj_add_crumb_schema', 10, 1);
function jj_add_crumb_schema($crumbs) {
if ( ! is_array( $crumbs ) || $crumbs === array() ) {
return $crumbs;
}
$listItems = [];
$j = 1;
foreach ( $crumbs as $i => $crumb ) {
$item = [];
if ( isset( $crumb['id'] ) ) {
$item = [
'@id' => get_permalink($crumb['id']),
'name' => strip_tags( get_the_title( $id ) )
];
}
if ( isset( $crumb['term'] ) ) {
$term = $crumb['term'];
$item = [
'@id' => get_term_link( $term ),
'name' => $term->name
];
}
if ( isset( $crumb['ptarchive'] ) ) {
$postType = get_post_type_object($crumb['ptarchive']);
$item = [
'@id' => get_post_type_archive_link($crumb['ptarchive']),
'name' => $postType->label
];
}
if(isset($crumb['url'])) {
if($crumb['text'] !== '') {
$title = $crumb['text'];
} else {
$title = get_bloginfo('name');
}
$item = [
'@id' => $crumb['url'],
'name' => $title
];
}
$listItem = [
'@type' => 'ListItem',
'position' => $j,
'item' => $item
];
$listItems[] = $listItem;
$j++;
}
$schema = [
'@context' => 'http://schema.org',
'@type' => 'BreadcrumbList',
'itemListElement' => $listItems
];
$html = '<script type="application/ld+json">' . json_encode($schema) . '</script> ';
echo $html;
return $crumbs;
}
以上是关于text 将架构添加到yoast seo breadcrumb的主要内容,如果未能解决你的问题,请参考以下文章
text 在WP管理栏中隐藏Yoast SEO。添加到功能。
php 使用Yoast SEO Analyis插件时,将ACF字段添加到Yoast SEO权重中
php 将IDX站点地图添加到Yoast SEO站点地图
php 将IDX站点地图添加到Yoast SEO站点地图
php 将'yoast'SEO数据添加到REST API w / og&twitter meta fallbacks ...
text Nginx重写了Yoast的WordPress SEO插件。这些重写将进入服务器块之间的Nginx主机文件。