Viewing File: /home/maglabs/exclusive/wp-content/themes/homeid/templates/search/layout.php

<?php
/**
 * The template for displaying archive content layout
 *
 * @since 1.0
 * @version 1.0
 */
if (have_posts()) {
	/* Start the Loop */
	while ( have_posts() ) : the_post();
		homeid_get_template('post/content');
	endwhile;
    echo paginate_links(array(
        'type' => 'list',
        'mid_size' => 1,
        'prev_text' => esc_html__('PREV', 'homeid'),
        'next_text' => esc_html__('NEXT', 'homeid'),
    ));
} else {
	homeid_get_template( 'post/content-none');
}
Back to Directory File Manager