¿Cuál es la mejor manera en la cual puedo centrar una imagen en wordpress que tenga un link en ella?
Wordpress - centrar imagen con link
Iniciado por
Lucia Gutierrez
, jun 09 2014 22:13
#1 AUTOR PREGUNTA
Esto también te interesa!
#3
Publicado 10 junio 2014 - 04:35
Agrega lo siguiente en el archivo functions.php:
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; }
#4 AUTOR PREGUNTA
Publicado 10 junio 2014 - 05:14
Gracias Jhony, muy util ty ejemplo