¿Desea encontrar los archivos de imagen no adjuntos en su biblioteca de medios? Si bien es probable que haya un plugin para esto, hemos creado un fragmento de código rápido que puede utilizar para listar todos los archivos no adjuntos en la biblioteca de medios en WordPress.
Instrucciones:
Todo lo que tienes que hacer es añadir este código al archivo functions.php de tu tema o en un plugin específico del sitio:
function get_attachment_files(){ $args = array( 'post_type' => 'attachment', 'numberposts' => -1, 'post_status' => null, 'post_parent' => 0 ); $attachments = get_posts($args); if ($attachments) { foreach ($attachments as $post) { setup_postdata($post); the_attachment_link($post->ID); } } }
Añade este fragmento de código a un archivo de plantilla de WordPress.
<? get_attachment_files(); ?>
Nota: Si es la primera vez que añade fragmentos de código en WordPress, consulte nuestra guía sobre cómo añadir correctamente fragmentos de código en WordPress, para no romper accidentalmente su sitio.
Si te ha gustado este fragmento de código, por favor, considere revisar nuestros otros artículos en el sitio como: 24 mejores temas WordPress multipropósito y cómo hacer fácilmente una copia de seguridad de tu sitio WordPress.
so the query will be like this
SELECT p.* FROM wp_posts p LEFT JOIN wp_posts p1 ON p.post_parent = p1.ID WHERE p.post_parent > 0 AND p.post_author IN (0,757,1758) AND p.post_type = ‘attachment’ AND p1.ID IS NULL
we can remove the author part if don’t need that.
Thank you, Tarun. You can also use the WPCode plugin to access hundreds of code snippets. It also lets you add and activate snippets quickly. 🙂
Hi
I have added a few products which I get from an API.
After that, I update the products and that process added the same images again.
Now on the deletion of those products, newly added images have post parent 0 (zero)
But previously added images still have the parent So this code not work in that case.
Right now, the requirement is: Get all unattached images (might be post_parent is zero or not)
Thanks
Thanks sir