Forums

[resolved] How to exclude some categories from my new Page Template? (5 posts)

  1. sngsl
    Member
    Posted 1 year ago #

    Hi Everyone...,

    I Hope someone helps me to solve this problem.

    I have 14 Categories in my site and i needed to exclude 1 category (cat14) from front page and i insert Below CODE to my index.php

    <?php
       if (is_home()) {
          query_posts("cat=-14");
       }
    ?>

    Then all post in Category 14 not showing on my Front Page.. That's i want..

    Then i Created a New Page (Test) and Create a Page Template (posts.php) and link them. my Page Template CODE below,

    <?php
    /*
    Template Name: PageOfPosts
    */
    
    get_header(); ?>
    
    	<div id="content" class="narrowcolumn">
    
    <?php
    $showposts = -1; // -1 shows all posts
    $do_not_show_stickies = 1; // 0 to show stickies
       $args=array(
       'showposts' => $showposts,
       'caller_get_posts' => $do_not_show_stickies,
       );
    $my_query = new WP_Query($args); 
    
    ?>
    
    	<?php if( $my_query->have_posts() ) : ?>
    
    		<?php while ($my_query->have_posts()) : $my_query->the_post(); ?>
    			<?php
    			//necessary to show the tags
    			global $wp_query;
    			$wp_query->in_the_loop = true;
    			?>
    			<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
    				<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
    				<small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small>
    
    				<div class="entry">
    					<?php the_content('Read the rest of this entry »'); ?>
    				</div>
    
    				<p class="postmetadata"><?php the_tags('Tags: ', ', ', '<br />'); ?> Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?>  <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p>
    			</div>
    
    		<?php endwhile; ?>
    
    		<div class="navigation">
    			<div class="alignleft"><?php next_posts_link('« Older Entries') ?></div>
    			<div class="alignright"><?php previous_posts_link('Newer Entries »') ?></div>
    		</div>
    
    	<?php else : ?>
    
    		<h2 class="center">Not Found</h2>
    		<p class="center">Sorry, but you are looking for something that isn't here.</p>
    		<?php get_search_form(); ?>
    
    	<?php endif; ?>
    
    	</div>
    
    <?php get_sidebar(); ?>
    
    <?php get_footer(); ?>

    After That the Linked page showing All posts from all categories.. but i want to show all Posts from Category 14.

    please someone tell me how i change the CODE in my Page Termplate to show all post from Category 14 on my new page (Test)...

    Thank you so much...

  2. Edward Caissie
    Member
    Posted 1 year ago #

    It looks like you missed identifying cat=14 in your $my_query = new WP_Query($args); ...

  3. sngsl
    Member
    Posted 1 year ago #

    Thanx,

    Please tell me how to Identify Cat=14 to that code?
    (I don't have knowledge with php)

    Please tell me the whole CODE...

    Thank you...

  4. sngsl
    Member
    Posted 1 year ago #

    OK.... I solved it...

    Thank you so much and Appreciated for valuable help guys...

  5. Edward Caissie
    Member
    Posted 1 year ago #

    You're welcome ... I'm glad you sorted it out on your own.

Topic Closed

This topic has been closed to new replies.

About this Topic