Created
November 28, 2022 22:42
-
-
Save MarceloGlez/02a1538ec5bb0aa3358497709eb60635 to your computer and use it in GitHub Desktop.
Exportar listado de galería de medios en Wordpress con WP All Export
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Nueva Exportación | |
// WP_Query Results | |
********** Consulta: | |
"post_type" => "attachment", | |
"post_status" => "inherit", | |
"post_mime_type" => array( "image/jpeg", "image/gif", "image/png", "image/bmp", "image/tiff", "image/x-icon", "audio/mpeg" ) | |
**********Campos de la plantilla de exportación: (Opcionales) | |
(Image ID) ID | |
(Image Filename) _wp_attached_file | |
(Image Title) Title | |
(Image Description) Content | |
(Image Caption) Excerpt | |
(Image Alt Text) _wp_attachment_image_alt | |
Nota: Sirve también para la edición masiva de aributos SEO para las imágenes. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment