我为我的 WordPress 使用了一个按钮简码(见下文)。
如您所见,我可以选择颜色,放置链接,为目标属性指定一些内容。
我想将 rel nofollow 添加到这个 wordpress 按钮链接短代码,但我不知道该怎么做。
add_shortcode('button', 'shortcode_button');
function shortcode_button($atts, $content = null) {
$atts = shortcode_atts(
array(
'color' => 'black',
'link' => '#',
'target' => '',
), $atts);
return '[raw]<span class="button ' . $atts['color'] . '"><a href="' . $atts['link'] . '" target="' . $atts['target'] . '">' .do_shortcode($content). '</a></span>[/raw]';
}
谢谢