Wordpress - centrar imagen con link
AUTOR PREGUNTA #1
-
¿Tienes la misma pregunta? Yo también
Esto también te interesa!
PREGUNTAS SIMILARES
#3
add_filter('image_send_to_editor','give_linked_images_class',10,8); function give_linked_images_class($html, $id, $caption, $title, $align, $url, $size, $alt = '' ) { // Solo hacerlo si es centrado if($align == 'center') { $html = str_replace('aligncenter', '', $html); $html = '<p style="width: 100%; text-align: center;" >'.$html.'</p>'; } return $html; }