
Wordpress custom image linking within <li> element
By:
Lanti on
Jan 4th, 2013 | syntax:
PHP | size: 0.25 KB | hits: 27 | expires: Never
add_filter('get_image_tag', 'lanti_get_image_tag', 10/*prio*/, 6/*number of arguments*/);
function lanti_get_image_tag($html, $id, $alt, $title, $align, $size)
{
$elotte = '<li>';
$utana = '</li>';
$html = $elotte . $html . $utana;
return $html;
}