Your IP : 3.143.7.112


Current Path : /home/church/www/africadayfestival.com/wp-content/themes/allegiant/core/
Upload File :
Current File : /home/church/www/africadayfestival.com/wp-content/themes/allegiant/core/menus.php

<?php

//Change the default walker for custom menu widgets
add_filter( 'wp_nav_menu_args', 'cpotheme_menu_walker' );
function cpotheme_menu_walker( $args ) {
	//Widgets do not use a theme_location
	if ( '' == $args['theme_location'] ) {
		$args = array_merge( $args, array( 'walker' => new Cpotheme_Menu_Walker() ) );
	}
	return $args;
}