momspc
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Trouble With wp_dropdown_categoriesYou rock Esmi!
I copied it and it worked like a charm. All I had to add was the orderby=name function. Yeah!
As an aside are there any advantages/disadvantages of using Java vs. the other language that most post are written in for Codex docs (don’t know the name of the code for the latter). Is it all compatible?
I just don’t want to mess up my site because of my coding ignorance.
Forum: Fixing WordPress
In reply to: Trouble With wp_dropdown_categoriesAh ha! That would explain why it wasn’t working. 🙂
I’ll research jump menus then and see if I can find some code I can copy.
Many thanks!!!
Forum: Fixing WordPress
In reply to: Give Drop-down menus a headerI had the same question and found an answer. Here’s the code using your specific requests:
<?php wp_dropdown_categories('child_of=13&show_option_none=Select Here'); ?>When I select a category from the drop down I can’t get any posts to pull back. The page just seems to remain unchanged. You wouldn’t happen to know how to fix that, do you?
Forum: Fixing WordPress
In reply to: Trouble With wp_dropdown_categoriesOK, I figured out the second issue. However I still have no clue on Issue #1.
Here’s the code I’m using.
<li> <h2>Categories</h2> <?php wp_dropdown_categories('orderby=name&show_option_none=Select Category'); ?> </li>