/*ショートコードのカスタマイズ:*/ function custom_sitecard_shortcode($atts) { $atts = shortcode_atts(array( 'url' => '', ), $atts, 'sitecard'); // URLから投稿IDを取得 $post_id = url_to_postid($atts['url']); if ($post_id) { return do_shortcode('[post_link id="' . $post_id . '"]'); } return ''; } add_shortcode('sitecard', 'custom_sitecard_shortcode'); 2024年12月13日 | CQ~JA3CGZ アマチュア無線ブログ