Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter kogeorge75

    (@kogeorge75)

    Thanks to both of you! Especially you Moshu- that post helped… I could have found that myself, but the WordPress support search is misbehaving?

    Thanks again!

    Thread Starter kogeorge75

    (@kogeorge75)

    Thanks for your reply… But I don’t get it. I am really not very technically saavy.

    I can’t find cat=-3 anywhere in my code. That’s what I am looking for, right?

    Here is the entire page:

    <?php get_header(); ?>

    <div id=”main” class=”main”>

    <?php
    query_posts(‘order=ASC’); //posts in ascending order
    ?>

    <?php if (have_posts()) : ?>

    <table width=”100%” border=”0″ cellspacing=”0″ cellpadding=”5″>
    <?php while (have_posts()) : the_post(); ?>
    <tr>
    <td class=”header”><?php the_time(‘F jS, Y’) ?> <!– by <?php the_author() ?> –></td>
    <td class=”header”><span id=”post-<?php the_ID(); ?>”>” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><?php the_title(); ?></span></td>
    </tr>
    <tr>
    <td colspan=”2″><?php the_content(‘Read the rest of this entry »’); ?>

    <div class=”comments”>Posted in <?php the_category(‘, ‘) ?> | <?php edit_post_link(‘Edit’,”,’|‘); ?> <?php comments_popup_link(‘No Comments »’, ‘1 Comment »’, ‘% Comments »’); ?></div>

    <?php comments_template(); ?>

    <!–
    <?php trackback_rdf(); ?>
    –>
    </td>
    </tr>
    <?php endwhile; ?>
    </table>

    <div class=”navigation”>
    <div class=”alignleft”><?php posts_nav_link(”,”,’« Previous Entries’) ?></div>
    <div class=”alignright”><?php posts_nav_link(”,’Next Entries »’,”) ?></div>
    </div>

    <?php else : ?>

    <h2 class=”center”>Not Found</h2>
    <p class=”center”><?php _e(“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(); ?>

    ————————

    What am I supposed to replace exactly? I can’t find the cat=-3 anywhere…

    Thread Starter kogeorge75

    (@kogeorge75)

    So that’s it then. It seems like it would be such a simple thing to do- have an intro page before the blog… Thanks anyway John; I appreciate that you were the only one to respond.

Viewing 3 replies - 1 through 3 (of 3 total)