Skip to content

Instantly share code, notes, and snippets.

@gfscott
Forked from rezen/wp.filter.php
Last active August 29, 2015 14:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gfscott/d049a87826f9ebe6a8cd to your computer and use it in GitHub Desktop.
Save gfscott/d049a87826f9ebe6a8cd to your computer and use it in GitHub Desktop.
function html5_figure_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_figure_image', 10, 9 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment