WordPressのfunction.phpでカスタムフィールドの内容を出力する方法
function downloadbtn($the_content) { $url = get_post_meta( get_the_ID(), 'url', true ); if (is_singular()) { $return = $the_content; $return .= '<p class="btn-dl"><a href="'. $url .'" target="_blnak">Download</a></p>'; return $return; } else { return $the_content; } } add_filter('the_content','downloadbtn');