jack19992
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Edit Post Entry [read: Post Entry Overhaul]That’s not a silly question at all, but the answer is. I thought about doing that, but realized I was only doing so for the way in which the posts [elements] read. Also, I like some of the features of Fresh & Clean (i.e. no 1px outline on images, stuff like that).
But, thank you for the code! Worked like a charm, so I’ll be implementing that soon. That, or switching to a new theme. I’m in transition, so it’s difficult to decide. Thanks for all of your help.
Forum: Fixing WordPress
In reply to: Edit Post Entry [read: Post Entry Overhaul]I forgot to add the current .php for Fresh & Clean’s ”post entry.” Here it is:
<?php while (have_posts()) : the_post(); ?> <div class="post"> <div class="postcontent"> <?php if ( has_post_thumbnail() ) { ?> <div class="thumbnail-wrap"> <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_post_thumbnail('post-image'); ?></a> </div><!-- END thumbnail-wrap --> <?php } ?> <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2> <?php the_excerpt(); ?> </div><!-- END Post Content --> <div id="byline"> Posted by <?php the_author() ?> On <?php the_time('F jS, Y') ?> / <?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?> </div><!-- /Post Byline --> </div><!-- END Post --> <?php endwhile; ?>
Forum: Fixing WordPress
In reply to: New and Deleted Posts not updating under categoriesResolved, great advice.
Forum: Fixing WordPress
In reply to: New and Deleted Posts not updating under categoriesThanks. We’ll see if this works out.
Forum: Fixing WordPress
In reply to: New and Deleted Posts not updating under categoriesHow do I go about emptying the cache? Also, is there a better plugin I should be using? Thanks for your hasty reply!
Forum: Fixing WordPress
In reply to: Showing Last 5 Posts In a Specific Category In SidebarThanks again – you’re a lifesaver!
Forum: Fixing WordPress
In reply to: Showing Last 5 Posts In a Specific Category In SidebarHey Rajesh – I’m only asking because you helped immensely last time: I have a new issue, but it is extremely similar to the last post I put up. Rather than trying to specify the category, I’m trying to specify a child category within a parent category. At the moment, I have:
(‘showposts=5&orderby=post_date&order=desc&category_name=editorials_kickstarters’);
This time around, I’m trying to display the last five kickstarter posts my site has published…’kickstarters’ is a child category within editorials. How would I go about pin-pointing it?
Forum: Fixing WordPress
In reply to: Showing Last 5 Posts In a Specific Category In Sidebar@rajesh, it totally worked! Thanks for you help, kind sir.
Forum: Fixing WordPress
In reply to: Showing Last 5 Posts In a Specific Category In Sidebar@t-p, I am looking for a more code-based solution. And Rajesh, I will implement that now, and let you know if it works. Just a moment…