homegrade_theme_production/template-components/header/search-module.php
2023-08-03 10:31:09 +02:00

28 lines
737 B
PHP

<?php
?>
<div id="search-module" class="search-module" mobile-closed aria-hidden role="search">
<div class="search-module__wrapper-container">
<?php get_search_form(); ?>
<div class="search-module__suggestions">
<p>Suggestions :</p>
<?php
$args = array(
'post_type' => 'conseils',
'posts_per_page' => 3,
'orderby' => 'rand',
);
$suggestions_posts = get_posts($args);
?>
<ul class="search-module__suggestions__navlist">
<?php foreach ($suggestions_posts as $post) : ?>
<li class="suggestion-item">
<a href="<?php echo get_the_permalink($post->ID) ?>"><?php echo $post->post_title ?></a>
</li>
<?php endforeach; ?>
</ul>
</div>
</div>
</div>