Forums
(@simppa69)
9 years, 3 months ago
for 1. Use this in functions.php, or own plugin (better):
add_filter( 'wp_get_attachment_image_attributes', 'remove_image_text' ); function remove_image_text( $attr ) { unset( $attr['caption'] ); unset( $attr['url'] ); return $attr; }