¿Está buscando una forma de contar las imágenes JPG, GIF y PNG de la biblioteca multimedia? Este fragmento mostrará un total de todas las imágenes JPG, GIF y PNG que se encuentran en la biblioteca multimedia.
Instrucciones:
- Añade este código al archivo functions.php de tu tema o en un plugin específico del sitio.
- Añade este fragmento de código a la ubicación de tu tema en la que quieras mostrar el recuento total.
function img_count(){ $query_img_args = array( 'post_type' => 'attachment', 'post_mime_type' =>array( 'jpg|jpeg|jpe' => 'image/jpeg', 'gif' => 'image/gif', 'png' => 'image/png', ), 'post_status' => 'inherit', 'posts_per_page' => -1, ); $query_img = new WP_Query( $query_img_args ); echo $query_img->post_count; }
<? img_count(); ?>
Nota: Si es la primera vez que añade fragmentos de código en WordPress, consulte nuestra guía sobre cómo copiar / pegar correctamente fragmentos de código en WordPress, para no romper accidentalmente su sitio.
Si le ha gustado este fragmento de código, por favor, considere consultar nuestros otros artículos en el sitio como: Cómo configurar el seguimiento de descargas en WordPress con Google Analytics y 24 mejores temas de educación de WordPress.
awesome it works! I need to create a shortcode to put the count where I want it. Wouldnt line 15 be then…
add_shortcode(‘imagecount’, ‘img_count’);
and then use [imagecount] on the page?
what do i have wrong?
Shortcodes require this pattern:
function myFunction( $atts ) {
return “value”;
}
add_shortcode( ‘shortcode’, ‘myFunction’ );
So you could use the above code and add this to the functions.php file:
function imageCountShortcode( $atts ) {
return img_count();
}
add_shortcode( ‘imagecount’, ‘imageCountShortcode’ );
Please note that this has not been tested, but can be used as a reference.
The count work good but i can not show result with shortcode i added, short code inside widget but count appear above it.
The above code is not for a shortcode. If you edited to be a shortcode, you would want to check that it was created correctly: https://codex.wordpress.org/Shortcode_API
Isn’t this part of WP core? I’m using 3.3.2 and it’s already there without this snippet.