Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The below is the menu code used in default theme of "Allure Real Estate Theme for Placester" wordpress theme

 `<li><a href="/">Home</a></li>
 <li><a href="<?php echo @get_permalink(get_page_by_title('About')->ID); ?  

  >">About</a>     

 </li>
 <li><a href="<?php echo @get_permalink(get_page_by_title('Search')->ID); ?

 >">Search</a></li>
 <li><a href="<?php echo @get_permalink(get_page_by_title('Blog')->ID); ?   

 >">Blog</a></li>
 <li><a href="<?php echo @get_permalink(get_page_by_title('Contact')->ID); ?

 >">Contact</a></li>
 <li><a href="<?php echo @get_permalink(get_page_by_title('Testimonials')->ID);   
 ?">Testimonials</a>`

How to create SUB-menu in any one main menu of above code?

share|improve this question

1 Answer

up vote 1 down vote accepted

I am not sure about how you can able to fix this sub-menu issue but you can remove the above code and replace with twenty ten nav bar code. That would do everything all you needed.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.