Remove Category Archive in Page Title

Discussion in 'Poloray WordPress Theme' started by sidneymcd, Feb 17, 2013.

Thread Status:
Not open for further replies.
  1. sidneymcd

    sidneymcd New Member

    Joined:
    Jan 18, 2013
    Messages:
    6
    Likes Received:
    0
    Hello - For my page title at the category level, I want it to show the category title only. Example: News. Currently it shows, Category Archives: News. I would want this to apply to all category page titles, news, blog, etc. Below is my category.php code. What should I change or remove? Thank you in advance!

    <?php
    /**
    * The template for displaying Category pages.
    *
    */
    ?>
    <?php get_header(); ?>
    <div class="heading_container">
    <div class="container_24">
    <div class="grid_24">
    <div class="page-heading">
    <h1 class="page-title"><a href="#"><?php printf(__('Category Archives: %s', 'poloray'), '' . single_cat_title('', false) . ''); ?></a></h1>
    </div>
    </div>
    <div class="clear"></div>
    </div>
    </div>
    <div class="page_container">
    <div class="container_24">
    <div class="grid_24">
    <div class="page-content">
    <div class="grid_16 alpha">
    <div class="content-bar">
    <?php if (have_posts()) : ?>
    <?php
    $category_description = category_description();
    if (!empty($category_description))
    echo '' . $category_description . '';
    /* Run the loop for the category page to output the posts.
    * If you want to overload this in a child theme then include a file
    * called loop-category.php and that will be used instead.
    */
    ?>
    <?php get_template_part('loop', 'category'); ?>
    <div class="clear"></div>
    <nav id="nav-single"> <span class="nav-previous">
    <?php next_posts_link(__('&larr; Older posts', 'poloray')); ?>
    </span> <span class="nav-next">
    <?php previous_posts_link(__('Newer posts &rarr;', 'poloray')); ?>
    </span> </nav>
    <?php endif; ?>
    </div>
    </div>
    <div class="grid_8 omega">
    <!--Start Sidebar-->
    <?php get_sidebar(); ?>
    <!--End Sidebar-->
    </div>
    </div>
    </div>
    <div class="clear"></div>
    </div>
    </div>
    <?php get_footer(); ?>



     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Go to category.php present in your theme directory and remove the Category Archives: text from line number 12.

    This will solve your issue.
     
  3. sidneymcd

    sidneymcd New Member

    Joined:
    Jan 18, 2013
    Messages:
    6
    Likes Received:
    0
    Thank you!
     
Thread Status:
Not open for further replies.

Share This Page