Explorez nos réalisations
Un projet d’infrastructure, d’ouvrage d’art ou d’équipement métallique ? Notre équipe vous répond rapidement et vous accompagne de l’étude à la fabrication.
/**
* Shortcode: [gallery_listing_paginated per_page="12" cols="2"]
*/
add_shortcode('gallery_listing_paginated', function($atts) {
$atts = shortcode_atts([
'per_page' => 12,
'cols' => 2,
], $atts, 'gallery_listing_paginated');
$paged = max(1, (int) get_query_var('paged'));
$perPage = max(1, (int) $atts['per_page']);
$cols = max(1, (int) $atts['cols']);
$q = new WP_Query([
'post_type' => 'attachment',
'post_status' => 'inherit',
'post_mime_type' => 'image',
'posts_per_page' => $perPage,
'paged' => $paged,
'orderby' => 'date',
'order' => 'DESC',
]);
ob_start();
if ($q->have_posts()) :
?>
Aucune image trouvée.';
endif;
return ob_get_clean();
});








