HEX
Server: Apache/2.2.22 (Debian)
System: Linux ns382018.ip-46-105-97.eu 3.14.32-xxxx-grs-ipv6-64 #9 SMP Thu Oct 20 14:53:52 CEST 2016 x86_64
User: web279 (5281)
PHP: 5.4.45-0+deb7u8
Disabled: NONE
Upload Files
File: /var/www/clients/client0/web279/web/MTDrubik/themes/twentyseventeen/category.php
<?php
get_header();
$Id_category=get_query_var('cat');//id de la categorie
$Name_category=get_cat_name($Id_category);// nom de la categorie
$cat=$_REQUEST['cat'];

?>

<section>
  <div class="section_box1_frame">
    <div class="container">
      <div class="title_nous_sommes02 wow fadeInDown" data-wow-duration='1s'><?php if($cat!=0){ ?> <?php echo get_cat_name($cat); ?> ><span> <?php }?><?php echo $Name_category; ?></span></div>
      <!--title_expert-->
      <div class="box_produits_frame">
      <?php
		query_posts( 'cat='.$Id_category.'&orderby=date&order=desc'); 
		while ( have_posts() ) : the_post();
		?>
        <div class="prod01"> <a href="<?php the_permalink(); ?>?cat=<?php echo $cat; ?>&Id_category=<?php echo $Id_category; ?>">
          <div class="img_prod"> <img src="<?php echo wp_get_attachment_url( get_post_thumbnail_id($post->ID)); ?>"> </div>
          <div class="titre_prod"> <?php the_title(); ?> </div>
          <div class="hover_prod01"><?php echo Colors_Code ;?></div>
          <!--hover_prod01-->
          <div class="clear"></div>
          </a> </div>
        <!--prod01-->
        <?php endwhile;  wp_reset_query(); ?>
        <div class="clear"></div>
      </div>
      <!--box_derniers_nv-->
    </div>
    <!--container-->
  </div>
  <!--bloc_nous_sommes-->
</section>
<?php get_footer(); ?>