Awesome the later code ‘exclude’ worked. Made my day!.
Thanks a bunch.
I got two more questions, though.
1. how can I safely remove ‘posts’ and ‘comments’ sections (or atleast disable so as not to see in the site) and also ‘categories’ link in the sidebar.php?
I tried taking some codes out with my limited knowledge. but it messed up some of my layout.
The index.php has the follwoing lines:
<?php get_header(); ?>
<div id=”content”>
<p align=”justify”>some stuff that i have here….
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<p class=”postmetadata”><?php the_time(‘F jS, Y’) ?> <!– by <?php the_author() ?> –>
<div class=”post” id=”post-<?php the_ID(); ?>”>
<h2>” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><?php the_title(); ?></h2>
<div class=”entry”>
<?php the_content(‘Read the rest of this entry »’); ?>
</div>
<p class=”postmetadata”>Posted in <?php the_category(‘, ‘) ?> | <?php edit_post_link(‘Edit’,”,’|‘); ?> <?php comments_popup_link(‘No Comments »’, ‘1 Comment »’, ‘% Comments »’); ?>
</div>
<?php endwhile; ?>
<div class=”navigation”>
<div class=”alignleft”><?php next_posts_link(‘« Previous Entries’) ?></div>
<div class=”alignright”><?php previous_posts_link(‘Next Entries »’) ?></div>
</div>
<?php else : ?>
<h2>Not Found</h2>
Sorry, but you are looking for something that isn’t here.
<?php include (TEMPLATEPATH . “/searchform.php”); ?>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
2. How can i add an external link (pointing to some other html page) in sidebar?
Sorry to continue in the same thread.
Please help.
Thanks,
drb