as a newbie in wordpress i m searching over to create link of my 'new-category.php' file to display my product category only & 'category.php' will be default for others. So anyone please tell me how to change the default permalink to link-up my static 'new-category.php' file ?
Here below code displaying the default category page:
<?php $categories=getCategory ();
foreach ($categories as $category) { ?>
<li> <a href=" <?php echo get_category_link( $category->term_id );?>">
<?php echo $category->cat_name; ?> </a></li>
<?php } ?>