我想用一下str_replace
在wordpress函数中,但它不工作。
我的代码:
function fields($content) {
if(is_feed()) {
$post_id = get_the_ID();
$url = str_replace(\'http://\', \'\', \'\' . get_post_meta($post_id, \'book-author\', true) . \'\');
$output = \'<div>\';
$output .= \'\' .url. \'\';
$output .= \'</div>\';
$content = $content.$output;
}
return $content;
}
add_filter(\'the_content\',\'fields\');
我得到的结果
\' .url. \'
只是在我的feed中打印了“url”。请帮忙。
非常感谢。