mtx212s
Forum Replies Created
-
Forum: Themes and Templates
In reply to: "Older Posts >>" link not working!Any help?
Forum: Themes and Templates
In reply to: "Older Posts >>" link not working!Still isn’t working. Is there another line of code in a different .php file or something that has to be set up properly? Or some sort of setting of some sort that could be off? I’ve never had this problem before, I just can’t get it to work. Thank you for your time, I greatly appreciate it.
Forum: Themes and Templates
In reply to: "Older Posts >>" link not working!I guess I’m just not seeing what’s wrong. If you have time is there ANY way you could look at my code above and tell me what it needs to be so it works properly? I would greatly appreciate it as I am at a complete standstill with this. Thank you.
Forum: Themes and Templates
In reply to: "Older Posts >>" link not working!And what would the fix for that be?
Forum: Themes and Templates
In reply to: "Older Posts >>>" Not Working. HELP!!I know bumping is frowned upon, but I have to get this figured out. ANY help would be appreciated!!
Forum: Themes and Templates
In reply to: "Older Posts >>>" Not Working. HELP!!Here’s my code via PasteBin
http://pastebin.com/TF0y1MpY
PLEASE HELP!Forum: Themes and Templates
In reply to: "Older Posts" not working…ANY other help?
Forum: Themes and Templates
In reply to: "Older Posts" not working…All of my posts are displayed using queries, is there something else that I need to do so the links take you to the next page of posts?
Forum: Themes and Templates
In reply to: "Older Posts" not working…Still isn’t working. I’m confused and I have no idea how to fix it. Any other ideas?
Forum: Themes and Templates
In reply to: "Older Posts" not working…Hmm, not working. When I click the older posts link it just displays the same 3 posts. Here’s my code, maybe something is wrong.
<?php $temp_query = $wp_query; ?> <?php query_posts('cat=17&posts_per_page=3&paged=' . get_query_var( 'page' ) ); ?> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div <?php post_class() ?> id="post-<?php the_ID(); ?>"> <h3 class="storytitle"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3> <div class="meta"><?php the_time('n.j.Y') ?> // By <?php the_author() ?> // <?php the_category(',') ?></div> <div class="storycontent"> <?php the_content(__('(more...)')); ?> </div> <div class="feedback"> <?php wp_link_pages(); ?> <?php comments_popup_link(__('Comments (0)'), __('Comments (1)'), __('Comments (%)')); ?> </div> </div> <?php comments_template(); // Get wp-comments.php template ?> <?php endwhile; else: ?> <p><?php _e('Sorry, no posts matched your criteria.'); ?></p> <?php endif; ?> <?php posts_nav_link(' — ', __('« Newer Posts'), __('Older Posts »')); ?> <?php wp_footer(); ?>Forum: Themes and Templates
In reply to: "Older Posts" not working…I currently have it set up as:
<?php query_posts(‘cat=6&posts_per_page=3’); ?>Do I need to add:
<?php query_posts(‘cat=6&posts_per_page=3&paged=6’); ?>Thanks.
Forum: Themes and Templates
In reply to: "Older Posts" not working…Help?
[please do not bump – it is against the forum rules, and you actually lessen your chances to get a reply, because many helpers check the threads without replies first.]
Forum: Themes and Templates
In reply to: "Thumbnail" size post for columnsAny help?
Forum: Themes and Templates
In reply to: Only displaying posts from certain categoriesAhh the & is what did it. I kept getting a syntax error before. Thank you guys!
Forum: Themes and Templates
In reply to: Only displaying posts from certain categories<?php $temp_query = $wp_query; ?> <?php query_posts('cat=6,7,8,9,10,11,12'); ?> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <?php the_date('','<h2>','</h2>'); ?> <div> <h4 class="storytitle"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h4> <div class="meta"></div> <div class="storycontent"> <?php the_content(__('(more...)')); ?> </div> <div class="feedback"> <?php wp_link_pages(); ?> <?php comments_popup_link(__('Comments (0)'), __('Comments (1)'), __('Comments (%)')); ?> </div> </div> <?php comments_template(); // Get wp-comments.php template ?> <?php endwhile; else: ?> <p><?php _e('Sorry, no posts matched your criteria.'); ?></p> <?php endif; ?> <?php posts_nav_link(' — ', __('« Newer Posts'), __('Older Posts »')); ?> <?php wp_footer(); ?> </div> </div>