//※ ブログカードリンク 記事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 = '' . $title . ''; } else { $img = ''; //アイキャッチ画像が無い場合に表示する画像 } $excerpt = has_excerpt($post_id) ? '' : ''; $blogcardid = ''; return $blogcardid; } add_shortcode("blogcardid", "blogcardid_func"); 【WPのブログカード風リンクで抜粋文を表示したい】 ワードプレスでブログカード風のリンクを使いたいのですが リンク先の投稿の抜粋文が表示できずにいます。 現状、上記の内容でfunctions.phpに記載していますが 抜粋文まで表示する方法を教えてください。 表示されるデザインが変わらなければ、コードが変わっても構いません。 記事IDから呼び出す方法。