skip to Main Content

add conditional body class in wordpress

I want's to add conditional body classes for index.php, page.php, category.php, tag.php In index.php body class only want's <body class"home"> In page.php body class only want's <body class"page"> In category.php body class only want's <body class"cat"> In tag.php body class…

VIEW QUESTION

How to get the category – WordPress

There is a cycle that outputs products <?php $args = array('post_type' => 'product'); $loop = new WP_Query($args); foreach ($loop->posts as $have_post) : ?> <div class="swiper-slide"> <a href=" <?php $permalink = get_post_permalink($have_post->ID); echo $permalink; ?> " class="goods__item"> <div class="goods__text"> <?php echo…

VIEW QUESTION
Back To Top
Search