php 使用Yoast SEO描述https://schema.press覆盖Schema描述值

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 使用Yoast SEO描述https://schema.press覆盖Schema描述值相关的知识,希望对你有一定的参考价值。

<?php //* do not include php tag

add_filter( 'schema_output', 'schema_wp_override_description_yoast_seo_12345' );
/*
*	Override Schema description value with Yoast SEO description
*/
function schema_wp_override_description_yoast_seo_12345( $schema_output ) {
	
	// get description value from Yoast SEO post meta
	$desc = get_post_meta( get_the_ID(), '_yoast_wpseo_metadesc', true);
	
	// override the value in schema output
	$schema_output["description"] = $desc;
	
	// return our schema array
	return $schema_output;
}

以上是关于php 使用Yoast SEO描述https://schema.press覆盖Schema描述值的主要内容,如果未能解决你的问题,请参考以下文章

php 使用Yoast SEO Analyis插件时,将ACF字段添加到Yoast SEO权重中

php 改变Yoast SEO默认图像大小

php 禁用Yoast SEO主要类别功能

php 禁用Yoast SEO主要类别功能

php Yoast SEO |获取主要类别

php Yoast SEO |获取主要类别