php 每当使用'h1'时,强制Genesis网站标题使用'p'。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 每当使用'h1'时,强制Genesis网站标题使用'p'。相关的知识,希望对你有一定的参考价值。

<?php

// Force the site title to use 'p' whenever an 'h1' would be used.
add_filter( 'genesis_seo_title','prefix_force_p_site_title_wrap', 99, 3 );
function prefix_force_p_site_title_wrap( $title, $inside, $wrap ) {
	$title = str_replace( '<h1', '<p', $title );
	$title = str_replace( '</h1>', '</p>', $title );
	return $title;
}

以上是关于php 每当使用'h1'时,强制Genesis网站标题使用'p'。的主要内容,如果未能解决你的问题,请参考以下文章

PHP强制在微信中打开

php中数组怎么循环输出

PHP正则匹配 Emoji的表达式怎么写?

php微信上传永久图片素材求代码

python的强制转换(当出现 not supported between instances of 'str' and 'int' 的错误时)

thinkphp5 现在开启强制路由,想要传递多个参数,做筛选功能的传参数功能,在route.php,怎么定义路由