How to disable image caption in WordPress post editor

by Jean-Baptiste Jung on January 5, 2010

Simply paste the following lines of code in your functions.php file, and you're done!

function caption_off() {
    return true;
}

add_filter( 'disable_captions', 'caption_off' );

Thanks to Wp Tricks for this nice hack!

Looking for WordPress hosting? Try WP Web Host. Prices starts at $5/month and you can try it for free!

How to disable image caption in WordPress post editor