Blog

It seems we can't find what you're looking for.
// Añadir palabras clave a los alt de todas las imágenes renderizadas por WordPress function espacioseo_modificar_alt_imagenes($attr, $attachment) { $keywords = ["PSIKO APRENDE", "Cursos de psicologia online", "cursos online"]; // 🔧 Edita las palabras clave aquí $keywords_text = implode(', ', $keywords); // Si no tiene alt o está vacío if (empty($attr['alt'])) { $attr['alt'] = $keywords_text; } else { // Si no contiene ya las palabras clave if (strpos($attr['alt'], $keywords[0]) === false) { $attr['alt'] .= ', ' . $keywords_text; } } return $attr; } add_filter('wp_get_attachment_image_attributes', 'espacioseo_modificar_alt_imagenes', 10, 2);