thirdeyetc
Forum Replies Created
-
Forum: Plugins
In reply to: Any new plugin requests?I desperately need something that does what is described here:
Thanks!
Forum: Plugins
In reply to: Archives by Category then DateI guess maybe I should be more specific..
Listed under each category heading, I want to display a link to all posts within a particular month/year within only ONE category… does this make sense?
Forum: Plugins
In reply to: display category name in previous/next linksI too would like to do this. I have an online store, and it’d be great if I could get it to say “next store item” or “next news item” etc..
has this been resolved? Currently using title as above.
Forum: Plugins
In reply to: Modified Loop equals broken the_tags functionAlright, Indeed your solution allows me to fix both problems as well without resorting to the plug in.
This also fixes the empty pages problem.
Thanks so much! Kafkaesqui is the bomb!
Forum: Plugins
In reply to: Modified Loop equals broken the_tags functionOK, I’m going to go ahead an implement your suggestion because I just noticed the UCE is removing posts from my recent entries sidebar which I don’t want. I will get back with what I learn…
Forum: Plugins
In reply to: Modified Loop equals broken the_tags functionHaha… well I finally grew impatient and ditched my hacked custom query in favor of the advanced category excluder plug in.
But I will take a note of this just in case I need to go back to the old method. The advanced category excluder also fixed the problem I was having with the custom query creating a bunch of blank pages in the pagination too…
(I should have said ‘indeed the TAGS appear’ above, sorry for the confusion)
Forum: Plugins
In reply to: Extra blank pages when categories excludedI am having trouble why the moderators told us that this is the proper code used to exclude categories from the front page, when it creates not only this issue, but broken tagging as well… am I doing this wrong?
Forum: Plugins
In reply to: Modified Loop equals broken the_tags functionWell, I am here to report that I switched back to the unmodified loop, and indeed the categories appear, so this is most definitely the issue.
I hope someone comes up with a work around for this, because I really don’t want the excluded categories appearing on my front page, and I like to minimalze the amount of plug-ins I am using.
Forum: Fixing WordPress
In reply to: Each posts with (linked) tags, how?Seems so easy… Doesn’t work for me on my index.php file though. Works well enough on single.php. I wonder.. is this because I edited my loop to remove certain categories?
Forum: Plugins
In reply to: Modified Loop equals broken the_tags functionIf this has been addressed a link would be appreciated.. from what I know what I’m doing should be working…
Forum: Fixing WordPress
In reply to: How to display post specific tags at the bottom of the postSorry for the multiple posts but I keep finding more stuff out. This must have to do with the modified loop, because when I added the code to my single.php file it works fine.
What’s the deal here? Can you not do tags with a modified loop? Is there a work around?
Forum: Fixing WordPress
In reply to: How to display post specific tags at the bottom of the postOh, perhaps I should mention I am using a modified version of the loop to eliminate certain categories:
<?php if (have_posts()) : ?> <?php $page = (get_query_var('paged')) ? get_query_var('paged') : 1; $recent = new WP_Query("cat=-3,-4,-9,-8,-74,-93&showposts=5&paged=$page"); while($recent->have_posts()) : $recent->the_post();?>Forum: Fixing WordPress
In reply to: How to display post specific tags at the bottom of the post<?php the_tags('Tagged with: ',' • ','<br />'); ?>Shouldn’t that work? Why won’t anything show up?
Forum: Fixing WordPress
In reply to: How to display post specific tags at the bottom of the postThis seems odd, but I’ve tried putting that code into my index.php file and nothing is generated. I am using cutline, and write now it is using
<?php the_category(' · ') ?>at the bottom of the content, and I wanted to switch it to tags… It’s definitely within the loop.If my theme didn’t come with tagging support do I have to do more.. I have wordpress 2.3.1
Forum: Plugins
In reply to: Extra blank pages when categories excludedOh I should also ad, in my admin I DO have the show posts set to 5 as well to prevent conflicts