2024-01-09 16:13:20 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Template part for displaying results in search pages
|
|
|
|
*
|
|
|
|
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
|
|
|
|
*
|
2024-01-13 15:46:11 +01:00
|
|
|
* @package Xarxaprod_theme
|
2024-01-09 16:13:20 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
?>
|
|
|
|
|
|
|
|
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
|
|
|
<header class="entry-header">
|
2024-01-13 13:44:31 +01:00
|
|
|
<?php the_title( sprintf( '<h3 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h3>' ); ?>
|
2024-01-09 16:13:20 +01:00
|
|
|
|
|
|
|
<?php if ( 'post' === get_post_type() ) : ?>
|
|
|
|
<div class="entry-meta">
|
|
|
|
<?php
|
2024-01-13 15:46:11 +01:00
|
|
|
xarxaprod_posted_on();
|
|
|
|
//xarxaprod_posted_by();
|
2024-01-09 16:13:20 +01:00
|
|
|
?>
|
|
|
|
</div><!-- .entry-meta -->
|
|
|
|
<?php endif; ?>
|
|
|
|
</header><!-- .entry-header -->
|
|
|
|
|
2024-01-13 15:46:11 +01:00
|
|
|
<?php xarxaprod_post_thumbnail(); ?>
|
2024-01-09 16:13:20 +01:00
|
|
|
|
|
|
|
<div class="entry-summary">
|
|
|
|
<?php the_excerpt(); ?>
|
|
|
|
</div><!-- .entry-summary -->
|
|
|
|
|
|
|
|
<footer class="entry-footer">
|
2024-01-13 15:46:11 +01:00
|
|
|
<?php xarxaprod_entry_footer(); ?>
|
2024-01-09 16:13:20 +01:00
|
|
|
</footer><!-- .entry-footer -->
|
|
|
|
</article><!-- #post-<?php the_ID(); ?> -->
|