Menú
08225, Terrassa (Barcelona)
Soporte Técnico
Sábados a convenir
Cita de Usuario borrado en 25 septiembre, 2019, 6:33 pmfunction add_alt_tags( $content ) { preg_match_all( '/<img (.*?)\/>/', $content, $images ); if ( ! is_null( $images ) ) { foreach ( $images[1] as $index => $value ) { if ( preg_match( '/alt=""/', $value ) ) { $new_img = str_replace( 'alt=""', 'alt="' . esc_attr( get_the_title() ) . ' '. $index . '"', $images[0][$index] ); $content = str_replace( $images[0][$index], $new_img, $content ); } } } return $content; } add_filter( 'the_content', 'add_alt_tags', 99999 );
function add_alt_tags( $content ) {
preg_match_all( '/<img (.*?)\/>/', $content, $images );
if ( ! is_null( $images ) ) {
foreach ( $images[1] as $index => $value ) {
if ( preg_match( '/alt=""/', $value ) ) {
$new_img = str_replace(
'alt=""',
'alt="' . esc_attr( get_the_title() ) . ' '. $index . '"',
$images[0][$index] );
$content = str_replace(
$images[0][$index],
$new_img,
$content );
}
}
}
return $content;
}
add_filter( 'the_content', 'add_alt_tags', 99999 );
© Informàtica Can Boada All rights reserved