web-wordpress-kit/kit/search.php

108 lines
3.2 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
get_header();
?>
<main>
<section class="background-color-white">
<div class="content-wrap">
<div class="headline-element" id="c145">
<h2><?php _e('Search', 'kit'); ?></h2>
</div>
<div id="c139" class="frame frame-default frame-type-list frame-layout-0">
<div class="tx-indexedsearch">
<div id="c139" class="frame frame-default frame-type-list frame-layout-0">
<div class="tx-indexedsearch">
<div class="tx-indexedsearch-searchbox">
<form method="get" role="search" action="<?php echo site_url(/); ?>">
<fieldset>
<div class="tx-indexedsearch-form">
<label for="tx-indexedsearch-searchbox-sword"><?php _e('Search for', 'kit'); ?>:</label>
<input class="tx-indexedsearch-searchbox-sword" type="text" name="s" value="<?php the_search_query(); ?>" />
</div>
<div class="tx-indexedsearch-search-submit">
<button type="submit" class="tx-indexedsearch-searchbox-button" />
<span><?php _e('Search', 'kit'); ?></span>
</button>
</div>
</fieldset>
</form>
</div>
</div>
</div>
<div class="tx-indexedsearch-browsebox">
<p>
<?php
global $wp_query;
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
$post_count_start = (($paged -1) * 10) + 1;
$post_count_end = ((($paged -1) * 10) + $wp_query->post_count);
_e("Showing results", 'kit');
echo "<strong> ";
printf( esc_html__( '%d to %d', 'kit' ), $post_count_start, $post_count_end );
echo "</strong> ";
_e("from total results", 'kit');
echo " <strong>" . $wp_query->found_posts. "</strong>";
?>
</p>
<div class="tx-indexedsearch-browsebox">
<?php the_posts_pagination( array(
'mid_size' => 2,
'prev_text' => __( '< Previous', 'kit' ),
'next_text' => __( 'Next >', 'kit' ),
'type' => 'list',
'before_page_number' => __('Page ', 'kit')
) ); ?>
</div>
</div>
<?php while ( have_posts() ) : the_post(); ?>
<div class="tx-indexedsearch-res">
<h3>
<span class="tx-indexedsearch-title">
<a href="<?php the_permalink(); ?>" ><?php the_title(); ?></a>
</span>
</h3>
<p class="tx-indexedsearch-description">
<?php the_excerpt(); ?>
</p>
<a href="#" class="link-more"><span>Weiterlesen</span></a>
</div>
<?php endwhile; ?>
<div class="tx-indexedsearch-browsebox">
<?php the_posts_pagination( array(
'mid_size' => 2,
'prev_text' => __( '< Previous', 'kit' ),
'next_text' => __( 'Next >', 'kit' ),
'type' => 'list',
'before_page_number' => __('Page ', 'kit')
) ); ?>
</div>
</div>
</div>
</div>
</section>
</main>
<?php
get_template_part('template-parts/sidebar');
get_footer();