Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Licensed Tradesmen

List of licensed local tradesmen

// Register Navigation Menus
function Find_local_contractors() {

	$locations = array(
		'electrician' => __( 'licensed electrical contractor', 'text_domain' ),
		'plumber' => __( 'local licensed plumber', 'text_domain' ),
		'heating&cooling' => __( 'local HVAC contractor', 'text_domain' ),
		'Builder' => __( 'Licensed Residential Building Contractor', 'text_domain' ),
		'Laborer' => __( 'Various labor skills', 'text_domain' ),
	);
	register_nav_menus( $locations );

}

// Hook into the 'init' action
add_action( 'init', 'Find_local_contractors' );