Bilder innerhalb des Figure-Elements aus dem Media Uploader einfügen

Avatar of Chris Coyier
Chris Coyier am

Für Ihre functions.php-Datei oder ein Funktionalitäts-Plugin

function html5_insert_image($html, $id, $caption, $title, $align, $url) {
  $html5 = "<figure id='post-$id media-$id' class='align-$align'>";
  $html5 .= "<img src='$url' alt='$title' />";
  if ($caption) {
    $html5 .= "<figcaption>$caption</figcaption>";
  }
  $html5 .= "</figure>";
  return $html5;
}
add_filter( 'image_send_to_editor', 'html5_insert_image', 10, 9 );

Es nimmt auch, was Sie als Bildunterschrift eingeben, und fügt es innerhalb des <figure>-Tags als <figcaption> ein. Beispiel für eingefügten Code

<figure id='post-18838 media-18838' class='align-none'>
  <img src='//youresite.com/wp-content/uploads/2012/10/image.png' alt='Title of image'>
  <figcaption>Caption for image</figcaption>
</figure>