76 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			76 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * The template for displaying Search Results pages.
 | |
|  *
 | |
|  * @package GeneratePress
 | |
|  */
 | |
| 
 | |
| if ( ! defined( 'ABSPATH' ) ) {
 | |
| 	exit; // Exit if accessed directly.
 | |
| }
 | |
| 
 | |
| get_header(); ?>
 | |
| 
 | |
| 	<div <?php generate_do_attr( 'content' ); ?>>
 | |
| 		<main <?php generate_do_attr( 'main' ); ?>>
 | |
| 			<?php
 | |
| 			/**
 | |
| 			 * generate_before_main_content hook.
 | |
| 			 *
 | |
| 			 * @since 0.1
 | |
| 			 */
 | |
| 			do_action( 'generate_before_main_content' );
 | |
| 
 | |
| 			if ( generate_has_default_loop() ) {
 | |
| 				if ( have_posts() ) :
 | |
| 					/**
 | |
| 					 * generate_before_loop hook.
 | |
| 					 *
 | |
| 					 * @since 3.1.0
 | |
| 					 */
 | |
| 					do_action( 'generate_before_loop', 'search' );
 | |
| 
 | |
| 					while ( have_posts() ) :
 | |
| 
 | |
| 						the_post();
 | |
| 
 | |
| 						generate_do_template_part( 'search' );
 | |
| 
 | |
| 					endwhile;
 | |
| 
 | |
| 					/**
 | |
| 					 * generate_after_loop hook.
 | |
| 					 *
 | |
| 					 * @since 2.3
 | |
| 					 */
 | |
| 					do_action( 'generate_after_loop', 'search' );
 | |
| 
 | |
| 				else :
 | |
| 
 | |
| 					generate_do_template_part( 'none' );
 | |
| 
 | |
| 				endif;
 | |
| 			}
 | |
| 
 | |
| 			/**
 | |
| 			 * generate_after_main_content hook.
 | |
| 			 *
 | |
| 			 * @since 0.1
 | |
| 			 */
 | |
| 			do_action( 'generate_after_main_content' );
 | |
| 			?>
 | |
| 		</main>
 | |
| 	</div>
 | |
| 
 | |
| 	<?php
 | |
| 	/**
 | |
| 	 * generate_after_primary_content_area hook.
 | |
| 	 *
 | |
| 	 * @since 2.0
 | |
| 	 */
 | |
| 	do_action( 'generate_after_primary_content_area' );
 | |
| 
 | |
| 	generate_construct_sidebars();
 | |
| 
 | |
| 	get_footer();
 |