これを機能させたいのですが、方法がわかりません:
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というカスタム投稿フィールドです。