Affinger英語サイト用コード(検索結果ページ)
- <?php get_header(); ?>
- <div id="content" class="clearfix">
- <div id="contentInner">
- <main>
- <article>
- <div class="post post-search">
- <h1 class="entry-title"> <!--検索結果数-->
- <?php if ( function_exists( 'st_cs_get_search_query' ) ): ?>
- <?php echo esc_html( st_cs_get_search_query( null, '', 'Search', ' : Search results', ' - ', '・' ) ); ?>
- <?php echo $wp_query->found_posts; ?>
- <?php else: ?>
- <?php $criteria = ( $s !== '' ) ? $s . ' : ' : ''; ?>
- <?php echo esc_html( $criteria ); ?>Search results <?php echo $wp_query->found_posts; ?>
- <?php endif; ?>
- </h1>
- <!--検索結果数終わり-->
- <?php if ( function_exists( 'st_cs_is_search' ) && st_cs_is_search() ): ?>
- <div class="st-custom-search-result-box"><?php echo do_shortcode( '[st-custom-search show_text_input="" template="result"]' ); ?></div>
- <?php else: ?>
- <?php //get_template_part( 'searchform' ); //Search form ?>
- <?php endif; ?>
- <?php if ( is_active_sidebar( 32 ) ) { ?>
- <?php if ( function_exists( 'dynamic_sidebar' ) && dynamic_sidebar( 32 ) ) : else : //検索結果ページ(上部)に表示ウィジェット ?>
- <?php endif; ?>
- <?php } ?>
- <?php if ( st_is_st_search_suggestion_enabled() ): ?>
- <?php echo do_shortcode( '[st-search-suggestion /]' ); ?>
- <?php endif; ?>
- </div>
- <?php get_template_part( 'itiran' ); //投稿一覧読み込み ?>
- <?php get_template_part( 'st-pagenavi' ); //ページナビ読み込み ?>
- <?php if ( is_active_sidebar( 33 ) ) { ?>
- <?php if ( function_exists( 'dynamic_sidebar' ) && dynamic_sidebar( 33 ) ) : else : //検索結果ページ(下部)に表示ウィジェット ?>
- <?php endif; ?>
- <?php } ?>
- </article>
- </main>
- </div>
- <!-- /#contentInner -->
- <?php get_sidebar(); ?>
- </div>
- <!--/#content -->
- <?php get_footer(); ?>