Good day, everyone! I wonder is there a way to create a single page for all categories and dynamically change category name in WP_query depending on a clicked navigation menu item or I have to create a separate page for every single category (there are 23 of them in my case)?
Menu:
<?php
$args = array(
'menu' => 'category_nav',
'container' => 'ul',
'container_class' => 'accordion-content',
'container_id' => '',
'menu_class' => 'accordion-content',
'menu_id' => '',
'echo' => true,
'fallback_cb' => false,
'before' => '',
'after' => '',
'link_before' => '',
'link_after' => '',
'items_wrap' => '<ul id="%1$s" class="%2$s">%3$s</ul>',
'item_spacing' => 'preserve',
'depth' => 0,
'walker' => '',
'theme_location' => ''
);
wp_nav_menu($args); ?>
Posts:
<?php
$args = array(
'nopaging' => true,
'orderby' => 'name',
'category_name' => 'HERE GOES A CATEGORY NAME',
);
$q = new WP_Query($args);
if($q->have_posts()) {
while($q->have_posts()){ $q->next_post();
$post_id = $q->post->ID;
$thumbnail = wp_get_attachment_image_src( get_post_thumbnail_id ( $post_id ), 'full' );
$title = get_the_title($post_id);
$date = get_the_date('d.m.Y', $post_id);
$content = get_post_field('post_content', $post_id);
$discount = get_post_field('discount', $post_id);
$discount_exists = get_post_meta( $post_id, 'discount', true );
$full_description = get_post_field('full_description', $post_id);
$full_description_exists = get_post_meta( $post_id, 'full_description', true ); ?>
<div class="gallery-item">
<?php echo '<div class="item-img" style="background-image:url(\'' . $thumbnail[0] . '\')"></div>'; ?>
<div class="item-content">
<div class="item-header"> <?php echo $title; ?> </div>
<div class="item-desc"> <?php echo $content; ?> </div>
</div>
<?php
if ( $full_description_exists ) {
?><div class="btn">More</div><?php
} ?>
</div>
<?php
}
}
wp_reset_postdata();
?>
Where should I get that cateory name/ID/slug and how can I use it in my code? Should I create just category.php file in template folder or I should use another file structure to cusomize categories output?