tvance929
Forum Replies Created
Viewing 6 replies - 1 through 6 (of 6 total)
-
Forum: Fixing WordPress
In reply to: No data received – suddenly on high volume siteHmmm.. sounds plausible. Do you have any suggestions on how I can recommend them fix it? — Thank you BTW.
Thanks! But something is still going wrong for me… I did this:
<ul> <?php $recent = new WP_Query(); ?> <?php $recent->query('category_name=volunteerspotlights&showposts=12&orderby=date&order=DESC'); ?> <?php while($recent->have_posts()) : $recent->the_post(); ?> <li style="width: 50%; float: left;"> <a href='<?php get_permalink(); ?>'> <div style="font-size: 14px; font-weight: bold;"><?php get_the_date('F'); ?></div> <div class="archiveName"><?php get_the_title(); ?></div> </a> </li> <?php endwhile; ?> </ul>I KNOW that its getting the posts because I only have 2 of those category and when I look at the HTML source, I have 2 LI items… but there is nothing in permalink or title or date.. ??
*** WOOT .. nvrmind. Got it.. with that WP_Query its just the_title, the_date and the_permalink. Thanks!
Forum: Fixing WordPress
In reply to: How do I get month only from post data?AW – Got it… the_date(‘F’)
Forum: Fixing WordPress
In reply to: Permalinks – history?DOH!!! That was it… thanks a ton!
Forum: Fixing WordPress
In reply to: Featured Image makes TimThumb of 80Hx120W…how to change?I figured it out…it was a hard coded value in my themes Archive page.
Forum: Fixing WordPress
In reply to: Trying to put just the top 5 post summaries in my main page…Thanks!!!!
Viewing 6 replies - 1 through 6 (of 6 total)