[advMenu id=N] function amw_shortcode( $atts ) { $instance = shortcode_atts(array( 'nav_menu' => '', 'title' => '', 'dropdown' => '', 'only_related' => '', 'depth' => '', 'container' => '', 'container_id' => '', 'menu_class' => '', 'before' => '', 'after' => '', 'link_before' => '', 'link_after' => '', 'filter' => '', 'filter_selection' => '', 'include_parent' => '', 'start_depth' => '', 'hide_title' => '', 'custom_widget_class' => '' ), $atts); ob_start(); the_widget('Advanced_Menu_Widget', $instance, '' ); $output = ob_get_contents(); ob_end_clean(); return $output; } add_shortcode( 'advMenu', 'amw_shortcode' );