我在我的模板functions.php上使用链接短代码,就像这样,
function post_link_shortcode( $atts ) {
// Attributes
extract( shortcode_atts(
array(
'id' => '',
'kelime' => '',
), $atts )
);
// Code
if ( isset( $id ) ) {
return '<a target="_blank" rel="nofollow" href="' . $id . '"> <strong>' .$kelime . '</strong></a>';
}
}
add_shortcode( 'link', 'post_link_shortcode' );
用法: [link id =“someurl.com”kelime =“link title”]
我们可以改变这个吗? [link | someurl.com |链接标题]可能吗?比怎么样?感谢。