# [メタ情報] # 識別子: 動画ショートコードの生成php_exe # システム名: 動画ショートコードの生成(動画埋め込みのショートコード) # 技術種別: Misc # 機能名: Misc # 使用言語: php # 状態: 実行用 # [/メタ情報] 動画ショートコードの生成.php Cocoon Child functions.php '' ), $atts, 'videoembed'); if (empty($atts['videoid'])) { return '
動画はまだ準備中です。
'; } $json_url = 'https://xxxxxxxx.com/wp-content/uploads/gd_wp_data/videoembed.json'; $response = wp_remote_get($json_url); if (is_wp_error($response)) { return '動画はまだ準備中です。
'; } $json_body = wp_remote_retrieve_body($response); $data = json_decode($json_body, true); if (!is_array($data)) { return '動画はまだ準備中です。
'; } foreach ($data as $entry) { if (isset($entry['videoid']) && (string)$entry['videoid'] === (string)$atts['videoid']) { $embed_code = $entry['embedCode']; return do_shortcode($embed_code); } } return '動画はまだ準備中です。
'; } add_shortcode('videoembed', 'videoembed_shortcode'); ?>