Using WP 3.0 custom menu with Thematic 0.9.7.4. Can it be done?
I can add an 'item' to the menu using:
function child_add_menu_items($output) {
$my_search='</ul></div>';
$my_replecement = '<li>Hello World!!</li></ul></div>';
return str_replace($my_search, $my_replecement, $output);
}
add_filter('wp_nav_menu','child_add_menu_items');
however not sure how to put a search box in there.
Thanks