我像这样在我的模板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"]
我们可以像这样改变吗?[链接|someurl.com|链接标题]
那可能吗 ?比怎么样?谢谢。