Infoga bilder i figurelement från Media Uploader - CSS-tricks

Anonim

För din functions.php-fil eller ett plugin för funktionalitet:

function html5_insert_image($html, $id, $caption, $title, $align, $url) ( $html5 = " 
"; $html5 .= " $title"; if ($caption) ( $html5 .= "
$caption
"; ) $html5 .= "
"; return $html5; ) add_filter( 'image_send_to_editor', 'html5_insert_image', 10, 9 );

Det tar också vad du anger som bildtext och infogar det i

tagg som en
. Exempel på infogad kod:
 
Title of image
Caption for image