yokima
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Deleting large number of posts at the same timeDo they follow any logic at all (same category, a specific time period, etc)? You might be able to do so by logging in directly to your mySQL engine and running a query on it (or use an interface like the phpMyAdmin)
Forum: Fixing WordPress
In reply to: Several posts a dayThis may or may not be related, but when I use the the_date() function to get the date, it sometimes pulls the date and sometimes it doesn’t. It’s really annoying, but I don’t know how to fix it. It seemed like the the_date function did not appear when it was the second instance of the function running on the same date.
Forum: Fixing WordPress
In reply to: Converting from non-blog to blog site.yes, you can modify your post_date values. you might want to go to options -> writing and check the box “advanced editing” so as to save you once click per post if there are many entries awaiting you.
Forum: Fixing WordPress
In reply to: static text in specific categories1. Category specific coding inside the loop
I believe I have a similar question. I want to introduce this IF statement:
<?php if (the_category_ID(false)==33) { ?>
category specific HTML code
<? } >I put this inside the loop. And it doesn’t seem to work. What would be the right statement?
2. category specific coding outside the loop.
I would also like to change the menu bar’s content according to how the index.php is being queried, so the menu bar will show one thing if index.php?cat=31 and another if ?cat=32 (if I could get to the category permalinks, the better)
how do I do that?
Forum: Fixing WordPress
In reply to: static text in specific categories1. Category specific coding inside the loop
I believe I have a similar question. I want to introduce this IF statement:
<?php if (the_category_ID(false)==33) { ?>
category specific HTML code
<? } >I put this inside the loop. And it doesn’t seem to work. What would be the right statement?
2. category specific coding outside the loop.
I would also like to change the menu bar’s content according to how the index.php is being queried, so the menu bar will show one thing if index.php?cat=31 and another if ?cat=32 (if I could get to the category permalinks, the better)
how do I do that?