0

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 } ?>
4

1 回答 1

0

创建您的页面,如:

<?php /* Template Name: my_category*/ ?>

    <?php get_header(); ?>

    //my_category page

    <?php get_footer(); ?>

并像访问它一样: http://yourdomain.com/my_category

模板名称:在这里起着重要作用。

于 2012-12-01T13:02:30.723 回答