//※ ブログカードリンク 記事IDから呼び出す
function blogcardid_func($atts) {
$post_id = $atts['id'];
$permalink = esc_url(get_permalink($post_id));
$title = esc_html(get_the_title($post_id));
$the_excerpt = apply_filters('get_the_excerpt', get_post_field('post_excerpt', $post_id));
if (has_post_thumbnail($post_id)) {
$img_src = get_the_post_thumbnail_url($post_id);
$img = '';
} else {
$img = '
'; //アイキャッチ画像が無い場合に表示する画像
}
$excerpt = has_excerpt($post_id) ? '