wordpress主题优化
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

62 lines
1.5 KiB

<?php
/**
* The template for displaying search results pages
*
* @package Cordero
*/
get_header();
if ( ! is_active_sidebar( 'cordero-sidebar' ) || get_theme_mod( 'sidebar_position' ) === 'below' ) {
$page_full_width = ' full-width';
} else {
$page_full_width = '';
}
?>
<?php cordero_before_primary_content(); ?>
<div id="primary" class="content-area<?php echo $page_full_width;?>">
<main id="main" class="site-main post-columns-<?php echo esc_attr( get_theme_mod( 'blog_columns', '2' ) );?>" role="main">
<?php if ( have_posts() ) : ?>
<header class="page-header">
<h1 class="page-title">
<?php
/* translators: %s: search query. */
printf( esc_html__( 'Search Results for: %s', 'cordero' ), '<span>' . get_search_query() . '</span>' );
?>
</h1>
</header><!-- .page-header -->
<div id="grid-loop">
<?php /* Start the Loop */ ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', 'search' ); ?>
<?php endwhile; ?>
</div><!-- #grid-loop -->
<?php the_posts_pagination( array(
'prev_text' => '<i class="dashicons dashicons-arrow-left-alt2"></i>',
'next_text' => '<i class="dashicons dashicons-arrow-right-alt2"></i>',
) ); ?>
<?php else : ?>
<?php get_template_part( 'content', 'none' ); ?>
<?php endif; ?>
</main><!-- #main -->
</div><!-- #primary -->
<?php cordero_after_primary_content(); ?>
<?php get_sidebar(); ?>
<?php get_footer(); ?>