working: footer widgets, searchform, search results
This commit is contained in:
parent
630e153253
commit
0c9de62831
17 changed files with 234 additions and 121 deletions
75
search.php
75
search.php
|
@ -4,63 +4,42 @@
|
|||
*
|
||||
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#search-result
|
||||
*
|
||||
* @package Freeshifter
|
||||
* @package AdamPion73k
|
||||
*/
|
||||
|
||||
get_header(); ?>
|
||||
|
||||
<main class="py-8 lg:py-24" style="min-height: 100vh;">
|
||||
<section class="container mx-auto relative z-10">
|
||||
<main class="container d-flex justify-content-center">
|
||||
<div class="col-12 col-md-10 col-lg-9 col-xl-8 col-xxl-7 pb-2 mb-4 mt-3">
|
||||
|
||||
<?php if (have_posts()) : ?>
|
||||
<h1 class="text-gray-300 fst-italic mb-4 tek-border-bottom-gray-dashed">
|
||||
Search results for: <?php echo esc_html( get_search_query() ); ?></h1>
|
||||
|
||||
<?php
|
||||
if ( have_posts() ) :
|
||||
while ( have_posts() ) :
|
||||
the_post();
|
||||
echo get_template_part( 'content-templates/content', 'article' );
|
||||
endwhile;
|
||||
?>
|
||||
|
||||
printf( '<h1 class="text-center mb-8">Search Results for: %s</h1>',
|
||||
esc_html( get_search_query() )
|
||||
);
|
||||
<nav class="d-flex justify-content-between" aria-label="Page navigation">
|
||||
<div class="nav-previous alignleft"><?php next_posts_link( '← Older' ); ?></div>
|
||||
<div class="nav-next alignright"><?php previous_posts_link( 'Newer →' ); ?></div>
|
||||
</nav>
|
||||
|
||||
echo '<div class="lg:flex justify-start flex-wrap lg:-mx-4">';
|
||||
while ( have_posts() ) {
|
||||
the_post(); ?>
|
||||
<div class="lg:w-1/3 lg:px-4 mb-8">
|
||||
<article <?php post_class( 'h-full' ); ?> itemscope itemtype="https://schema.org/CreativeWork">
|
||||
<a class="card-link h-full bg-light-2" rel="bookmark" href="<?= esc_url( get_the_permalink() ); ?>">
|
||||
<header>
|
||||
<?php
|
||||
if( has_post_thumbnail() ) {
|
||||
the_post_thumbnail( 'thumbnail', [
|
||||
'class' => 'shadow-lg rounded-full float-right ml-2 mb-2 w-1/4'
|
||||
]);
|
||||
}
|
||||
?>
|
||||
<div class="text-left relative z-10">
|
||||
<h2 class="card-title text-h4 font-bold m-0" itemprop="headline"><?= get_the_title(); ?></h2>
|
||||
<p class="text-sm italic mt-2">
|
||||
<time class="<?= is_singular('page') ? 'hidden' : ''; ?>" itemprop="datePublished" datetime="<?= get_the_date( 'c' ); ?>">Published on <?= get_the_date( 'F j, Y'); ?></time>
|
||||
</p>
|
||||
</div>
|
||||
</header>
|
||||
<?php
|
||||
printf( '<div class="article text-sm text-left">%s</div>',
|
||||
get_the_excerpt()
|
||||
); ?>
|
||||
</a>
|
||||
</article>
|
||||
</div>
|
||||
<?php
|
||||
}
|
||||
echo '</div>';
|
||||
<?php
|
||||
else :
|
||||
|
||||
the_posts_navigation();
|
||||
echo '<h1 class="text-gray-300 fst-italic mb-4 tek-border-bottom-gray-dashed">Search: nothing found</h1>';
|
||||
|
||||
else :
|
||||
printf( 'Sorry, no results for %s',
|
||||
esc_html( get_search_query() )
|
||||
);
|
||||
endif;
|
||||
?>
|
||||
|
||||
printf( 'Sorry, no results for %s',
|
||||
esc_html( get_search_query() )
|
||||
);
|
||||
|
||||
endif; ?>
|
||||
</section>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<?php
|
||||
get_footer();
|
||||
get_footer('', array('frontpage'=>false));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue