?AlkantarClanX12

Your IP : 216.73.216.177


Current Path : /home/rankinh/villavanille/wp-content/plugins/drew-core/inc/search/layouts/fullscreen/
Upload File :
Current File : /home/rankinh/villavanille/wp-content/plugins/drew-core/inc/search/layouts/fullscreen/helper.php

<?php

if ( ! function_exists( 'drew_core_register_fullscreen_search_layout' ) ) {
	/**
	 * Function that add variation layout into global list
	 *
	 * @param array $search_layouts
	 *
	 * @return array
	 */
	function drew_core_register_fullscreen_search_layout( $search_layouts ) {
		$search_layouts['fullscreen'] = 'DrewCore_Fullscreen_Search';

		return $search_layouts;
	}

	add_filter( 'drew_core_filter_register_search_layouts', 'drew_core_register_fullscreen_search_layout' );
}