/*ショートコードのカスタマイズ:*/ function custom_sitecard_shortcode($atts) { $atts = shortcode_atts(array( 'url' => '', ), $atts, 'sitecard'); if (!empty($atts['url'])) { // URLから投稿IDを取得 $post_id = url_to_postid($atts['url']); if ($post_id) { // 成功した場合、指定されたショートコードを返す return do_shortcode('[post_link id="' . $post_id . '"]'); } } // URLが空の場合やIDが見つからない場合は空を返す return ''; } add_shortcode('sitecard', 'custom_sitecard_shortcode'); 2024年12月15日 | CQ~JA3CGZ アマチュア無線ブログ