| Server IP : 54.36.91.62 / Your IP : 216.73.216.15 Web Server : Apache System : Linux webm021.cluster127.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64 User : uxhactp ( 169076) PHP Version : 7.4.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/uxhactp/www/wp-content/themes/applica/template-parts/ |
Upload File : |
<?php
/**
* Template part for displaying results in search pages
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package Applica
*/
$enabled_post_meta = '';
$archive_style = applica_get_option('archive_style');
switch ($archive_style) {
case 'archive_style_1':
$enabled_post_meta = applica_get_option('archive_post_meta_1');
break;
case 'archive_style_2':
$enabled_post_meta = applica_get_option('archive_post_meta_2');
break;
case 'archive_style_3':
$enabled_post_meta = applica_get_option('archive_post_meta_3');
break;
case 'archive_style_4':
$enabled_post_meta = applica_get_option('archive_post_meta_4');
break;
default:
// code...
break;
}
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="entry-header">
<?php the_title( sprintf( '<h2 class="entry-title font-size-medium line-clamp line-clamp-2 mb-8"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' ); ?>
<?php if ( 'post' === get_post_type() ) : ?>
<div class="entry-meta mb-16">
<?php
applica_posted_on();
applica_posted_by();
?>
</div><!-- .entry-meta -->
<?php endif; ?>
</header><!-- .entry-header -->
<?php applica_post_thumbnail(); ?>
<?PHP if ( absint(applica_get_option( 'excerpt_length' )) != '0'){ ?>
<div class="theme-article-excerpt line-clamp line-clamp-3 mt-16">
<?php the_excerpt(); ?>
</div><!-- .entry-summary -->
<?php } ?>
<footer class="entry-footer">
<?php applica_entry_footer($enabled_post_meta); ?>
</footer><!-- .entry-footer -->
</article><!-- #post-<?php the_ID(); ?> -->