| 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 post archives
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package Applica
*/
$class = '';
if('archive_style_4' == $archive_style){
$class = 'data-bg applica-bg-image';
}
$post_format = get_post_format();
$enabled_post_meta = '';
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($class); ?>>
<div class="article-block-wrapper">
<?php get_template_part('template-parts/archive/entry-header-archive');?>
<div class="entry-summary">
<?php get_template_part( 'template-parts/archive/archive', $post_format ); ?>
</div><!-- .entry-content -->
<?php
if ( 'aside' != $post_format && 'status' != $post_format ) { ?>
<footer class="entry-meta entry-meta-footer">
<?php applica_entry_footer($enabled_post_meta); } ?>
</footer>
<?php ?>
</div><!-- .article-block-wrapper -->
</article><!-- #post-<?php the_ID(); ?> -->