kogeorge75
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Pass Category Name to a variable…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!
Forum: Fixing WordPress
In reply to: Trouble with ASC entriesThanks 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…
Forum: Installing WordPress
In reply to: Root page other than index.php?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.