此值来自模板tag the_author()
.您也可以对此进行筛选。但重要的是,你要检查,过滤器只对提要起作用;请参见以下示例中的检查is_feed()
.在此之后,如果字符串的值为“name\\u xyz”,我只更改autor名称;这里是您根据需求更改数据的要点。
我从头开始写,不需要测试!
add_filter( \'the_author\', \'fb_change_fead_creator\', 10 );
function fb_change_fead_creator( $text ) {
if ( ! is_feed() )
return;
if ( \'name_xyz\' == $text )
$text = \'my new name\';
return $text;
}
最好的