crazybilly
Forum Replies Created
-
I just ran into a similar problem–using the_tags() just didn’t show up.
I found that I was using the Loop example from the Codex. If I replaced it with the one in the default theme, the_tags() started working.
Originally, I had this:
if ( $posts ) : foreach ( $posts as $post ) : start_wp();I replaced it with:
if (have_posts()) : while (have_posts()) : the_post();Of course, the bottom needed to be changed, as well, from an endeach to and endwhile.
Worked for me.
Forum: Plugins
In reply to: merge/rename categories plugin not working with 2.7Did you have any luck, Jeremy? I’m stumbling around w/ the same problem.
I could probably hack the php together for this, but honestly SQL scares me.
Thanks!
Forum: Fixing WordPress
In reply to: Remove ‘uncategorized’ from posts also assinged to other categoriesDoh…obviously, I should have refreshed before I posted ;).
So, I can’t delete the category, but I CAN rename it. Hmm…
Forum: Fixing WordPress
In reply to: Remove ‘uncategorized’ from posts also assinged to other categoriesHmmm…unforunately, batch categories doesn’t seem to work on 2.7.
What happens if I deleted the ‘uncategorized’ category?
Forum: Fixing WordPress
In reply to: Remove ‘uncategorized’ from posts also assinged to other categoriesGreat–thanks. I’ll take a look and let you know how it goes.