-
TDN >
-
BestOf
Tous les ans depuis 22 ans, ils prennent la même photo de leur fils !
Publié par
Elsa Fanjul
le 13 Jan 2014 à 10:26
La suite en page 3
/**
* Recirculation
*/
$articles_from_cat = new WP_Query( array(
'post_type' => 'post',
'post_status' => 'publish',
'posts_per_page' => 6,
'orderby' => 'rand',
'cat' => tdn_get_main_category_id( get_the_id() ),
'post__not_in' => array( get_the_id() ),
) );
if ( ! empty( $articles_from_cat ) ):
echo '
';
foreach ( $articles_from_cat->posts as $article ):
get_template_part( 'template-parts/content/article-card', null, $args = array( 'post' => $article, 'class' => '' ) );
endforeach;
echo '
';
endif;
get_footer();