如果您想针对xhtml
类型生成器,可以使用the_generator
过滤器:
/**
* Change the version number to PI for the \'xhtml\' type generator
*/
add_filter( \'the_generator\', function ( $html, $type )
{
if( \'xhtml\' === $type )
$html = sprintf( \'<meta name="generator" content="WordPress %f"/>\', M_PI );
return $html;
}, 10, 2 );
或者
get_the_generator_{$type}
过滤器:
/**
* Change the version number to PI for the \'xhtml\' type generator
*/
add_filter( \'get_the_generator_xhtml\', function ( $html )
{
return sprintf( \'<meta name="generator" content="WordPress %f"/>\', M_PI );
} );
其他类型包括
html
,
atom
,
rss2
,
rdf
,
comment
和
export
. 它们并不都使用相同的HTML结构。
但如果这是改变它的原因,我怀疑它对安全会有多大帮助。