如果你决定走这条路,这应该行得通。只需将其添加到主题功能中即可。php文件:
// Add Shortcode
function link_inline_styling( $atts , $content = null ) {
// Attributes
extract( shortcode_atts(
array(
\'url\' => \'\',
\'target\' => \'\',
), $atts )
);
// Code
return \'<a href="\'.$url.\'" target="\'.$target.\'" ><span style="font-family:Arial,Verdana;font-size:12px;font-weight:12px;color:#337D98;"><strong>\'.$content.\'</strong></span></a>\';
}
add_shortcode( \'link\', \'link_inline_styling\' );
然后在您的内容区域中,您可以使用以下短代码:
[link url="http://google.com" target="_blank"]My Anchor text[/link]
输出如下:
<a href="http://google.com" target="_blank" ><span style="font-family:Arial,Verdana;font-size:12px;font-weight:12px;color:#337D98;"><strong>My Anchor text</strong></span></a>