get_the_author_meta
applies a filter get_the_author_{$field}
, i、 e.在你的情况下get_the_author_description
:
function stripp($value) {
return str_replace(array(\'<p>\',\'</p>\'), \'\', $value);
}
add_filter(\'get_the_author_description\', \'stripp\');
如果
p
标记具有属性,您可能需要相应地修改以上内容,或使用
preg_replace
.