kraftomatic
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Query Question – Adding Not Equal to LogicPerfect! Thanks guys.
Forum: Fixing WordPress
In reply to: Query Question – Adding Not Equal to Logict31os_ – I do see that in regard to the array. However, what does using the tag ID get me here?
In the code I have in the first post, using “tag=doug” works for displaying any posts tagged as doug. What I’m trying to do is display posts that do not have that tag. So I simply need a logic operator that will work like “!=”, which doesn’t seem to be working in the code I’m using.
Perhaps I need to do some work on the query before that line of code and just grab posts without certain tags on them?
Forum: Fixing WordPress
In reply to: Query Question – Adding Not Equal to LogicI thought that would, but it doesn’t work unfortunately.
Forum: Fixing WordPress
In reply to: Help With Post Query – identify all posts with no tagsThanks Michael.
Forum: Fixing WordPress
In reply to: Best Way To Do Author Check?That would work, but I don’t want to use gravatars specifically. I just really want to do a manual author check.
Thanks.
Forum: Fixing WordPress
In reply to: Monthly Archive Counts Not AccurateWeird. I do too now. If you click on another month, then let the page load – I now see 20 posts for January again. Can you please confirm?
Forum: Fixing WordPress
In reply to: Monthly Archive Counts Not AccurateWell for example:
http://www.notsofast48.com/?m=200901
January shows 20 posts for ’09, and once you click on the month – there are only 5 posts. So something is definitely wrong.
FWIW, it’s happening in IE only. Looks fine in Firefox. Isn’t that odd?
Forum: Fixing WordPress
In reply to: Please Correct Bug With Category DropdownAlright, I have it figured out, although I’m not sure it’s the most efficient solution. I simply added below the above code:
<?php query_posts('cat=0'); ?>To essentially reset the category ID value. I’m not sure if there’s a better way to do this or not ..
Forum: Fixing WordPress
In reply to: Please Correct Bug With Category DropdownI’m ashamed I didn’t do this in the first place. I did as you mentioned and the issue is coming from this block of code in an include before the category listing displays:
<h2>Releases</h2> <ul class="dates"> <?php query_posts('cat=4&showposts=2'); ?> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <li> <a href="<?php the_permalink() ?>"><?php the_title() ?></a> <br /> <span class="date"><?php the_time('l, F jS') ?></span> </li> <?php endwhile; endif; ?> </ul> <h2>News</h2> <ul class="dates"> <?php query_posts('cat=6&showposts=2'); ?> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <li> <a href="<?php the_permalink() ?>"><?php the_title() ?></a> <br /> <span class="date"><?php the_time('l, F jS') ?></span> </li> <?php endwhile; endif; ?> </ul>Forum: Fixing WordPress
In reply to: Please Correct Bug With Category DropdownYes that’s what I have also. What other event could cause this to not display correctly in some instances?
No matter what I do, it always displays a specific category (not “Select Category”) on the home page of WordPress. If I had this live currently, I could show you (not that it would do much good with only seeing the HTML).
Forum: Fixing WordPress
In reply to: Please Correct Bug With Category DropdownWell there was another guy there. And I’ve seen it posted elsewhere outside this forum. 🙂
I’m using the latest version of WP. 2.7.1. It was happening back in version 2.5+ as well.
Thanks for looking into this.
Forum: Fixing WordPress
In reply to: Please Correct Bug With Category DropdownSure Michael. Here is the thread I had started:
Forum: Fixing WordPress
In reply to: Category Drop Down – Minor Bug/Issuebump.
Forum: Fixing WordPress
In reply to: Turn off Post Revisions?Negative .. straight from Notepad.
Forum: Fixing WordPress
In reply to: Category Drop Down – Minor Bug/IssueWhat would be causing this?