'button', 'href' => '#', 'class' => 'btn btn-primary dropdown-toggle', 'wrapper_class' => '', 'dropdown_menu_class' => '', 'id' => '', 'title' => '', 'value' => '', 'content' => '', 'icon' => '', 'hover_content' => '', 'hover_icon' => '', 'data-toggle' => 'dropdown', 'aria-haspopup' => 'true', 'aria-expanded' => 'false', 'dropdown_menu' => '', // unescaped html menu (non-preferred way) 'dropdown_items' => array(), // array of AUI calls ); /** * Parse incoming $args into an array and merge it with $defaults */ $args = wp_parse_args( $args, $defaults ); $output = ''; if ( ! empty( $args['type'] ) ) { // wrapper open $output .= ''; } return $output; } }