KDesigns
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: Alphabetical category list without “The” or “An”?You’re right, wp_list_categories() does return a string but you can throw it in a variable instead of having it echoed out.
get_categories(), like dy_dream says, would return it in an array. Filtering from there would be a little tricky as it would require ignoring certain words in ordering but still including them in the echoed version.
Forum: Developing with WordPress
In reply to: Alphabetical category list without “The” or “An”?You could probably accomplish this using wp_list_categories() and setting the echo parameter to 0 so that it would keep it in a variable. Of course I’m not sure if that just throws the list in a variable or if it is an array (Haven’t tested it out) so there would probably need to be some string trickery in there needed to use natural WP functions.
wp_list_categories()
How to Pass Tag Parameters – May not be a ton of help but thought it may be useful.These are just off the top of my head. Hope it helps get the ball rolling for you.
Forum: Installing WordPress
In reply to: Can’t log-in to WP 2.6 with FirefoxCookie purge worked for me using the Web Dev toolbar (clear private data). If it doesn’t work for you, maybe try clearing your cache as well.
Forum: Fixing WordPress
In reply to: spam hijack in blog WTF1. Make sure your template files are on lockdown. This will require an external editor to to edit the files then and you won’t be able to use the theme editor
2. Consider getting rid of the theme editor php file in the admin area.
Here’s a link to a Google search. Didn’t have an opportunity to peruse all the sites but you might be able to find some additional ideas/help in some of the links: Google Search
Forum: Fixing WordPress
In reply to: spam hijack in blog WTFI’ve recently read about this type of thing happening. It seems they exploit something with the theme editor to edit theme files from what I recall.
Forum: Fixing WordPress
In reply to: Sidebar problem in FirefoxYou may be experiencing problems with your widths defined. IE adds some extra padding in there that would cause your bar to go below because it doesn’t ‘fit’ in the necessary space.