私はしばらくの間この問題を検索しました、多分それは単純であるかそうでないかもしれません。これを機能させる方法がわかりませんでした。
私の目標の結果は、そのようなスタイリングを備えたポストメタに関連するハイパーリンクになります。
<a href="href_link" style="color: #e67300" rel="nofollow"> Check out the r_title here!</a>
私が持っているコードは次のとおりです。
<?php
$rtitle1 = get_post_meta($post->ID, 'r_title', true);
$rlink1 = get_post_meta($post->ID, 'href_link', true);
function testfunction() {
$output .= '<a href=\"'$rlink1'\" style=\"color: #e67300\" rel=\"nofollow\">';
$output .= ' Check out the '$rtitle1' here!</a>';
return $output;
}
add_shortcode('shortcode', 'testfunction');
?>