このように、テンプレート 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' );
使用法: [リンク id="someurl.com" kelime="リンク タイトル"]
これを次のように変更できますか。[リンク|someurl.com|リンクのタイトル]
それは可能ですか?どのように?ありがとう。