【WordPress】囲むshortcode 【覚書】
すぐ忘れちゃうので。
fontawesome5のタグが入っていますが、ご愛敬。。。
<使い方>
[ilink id="投稿ID" class="付加したいクラス"]テキストとか画像とか[/ilnk]
<コード>
functions.phpに書く。
[php]
/* 投稿IDから内部リンクを作るショートコード */
function internal_link_shortcode($atts, $content="") {
$id = $atts['id’];
$class = $atts['class’];
if( get_permalink( $id ) ) {
$url = get_permalink( $id );
$html = '<a href="' . $url . '" class="internal-link '.$class.'">’ . $content. '</a>’;
}
else {
$html = '<strong class="warning"><i class="fas fa-check-circle"></i> IDに該当なし</strong>’;
}
return $html;
}
add_shortcode('ilink’,’internal_link_shortcode’);
[/php]
ディスカッション
コメント一覧
まだ、コメントがありません