Viewing 2 replies - 1 through 2 (of 2 total)
  • Why?

    Hi,

    You can use this code to disable media uploader in your wordpress blog:

    <?php

    function removemediabuttons()
    {
    remove_action( ‘media_buttons’, ‘media_buttons’ );
    }
    add_action(’admin_head’,’removemediabuttons’);
    ?>

    Save this code in any php file and upload it in plugins directory as plugin. After that activate this plugin as normal..which will disabled the media uploader option from wordpress post writing section:

    Thanks,

    Shane G.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘how to Disable Stop Image/Media Uploader ?’ is closed to new replies.