我想完成这项工作,但我不知道如何:
add_filter( 'the_content', 'my_the_content_filter', 999999 );
function my_the_content_filter( $content ) {
$content = str_replace
('<h3>', '<a href="<?php echo $url; ?>">click here</a><h3>', $content,);
return $content;
}
在哪里
echo $url;
是称为 url 的自定义帖子字段。