• 「メディアを挿入」画面から、「キャプション」「説明」の入力項目を消したい
    のですが、どなたかご教授いただけないでしょうか?
    どうぞよろしくお願いします。

    ——————————————————
    ちなみに「添付ファイルのページ」の表示削除は
    は下記のコードで行えました。

    // リンク先から添付ファイルのページの選択肢を消去
    function media_script_buffer_start() {
    ob_start();
    }
    add_action( ‘post-upload-ui’, ‘media_script_buffer_start’ );

    function media_script_buffer_get() {
    $scripts = ob_get_clean();
    $scripts = preg_replace( ‘#<option value=”post”>.*?</option>#s’, ”, $scripts );
    echo $scripts;
    }
    add_action( ‘print_media_templates’, ‘media_script_buffer_get’ );

  • トピック「「メディアを挿入」画面から、「キャプション」「説明」の入力項目を消」には新たに返信することはできません。