| 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/u/x/h/uxhactp/www/wp-content/themes/applica/template-parts/ |
Upload File : |
<?php
/**
* Template part for displaying page content in page.php
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package Applica
*/
global $post;
$applica_page_layout = esc_html(get_post_meta($post->ID, 'applica_page_layout', true));
if (empty($applica_page_layout)) {
$applica_page_layout = 'layout-1';
}
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php if ($applica_page_layout == "layout-1") { ?>
<header class="entry-header">
<?php the_title('<h1 class="entry-title font-size-large">', '</h1>'); ?>
</header><!-- .entry-header -->
<?php applica_post_thumbnail(); ?>
<?php $display_read_time_in = applica_get_option('display_read_time_in');
if (in_array('single-page', $display_read_time_in)) {
applica_read_time();
} ?>
<?php } ?>
<div class="entry-content">
<?php
the_content();
wp_link_pages(
array(
'before' => '<div class="page-links">' . esc_html__('Pages:', 'applica'),
'after' => '</div>',
)
);
?>
</div><!-- .entry-content -->
<?php if (get_edit_post_link()): ?>
<footer class="entry-footer">
<?php
edit_post_link(
sprintf(
wp_kses(
/* translators: %s: Name of current post. Only visible to screen readers */
__('Edit <span class="screen-reader-text">%s</span>', 'applica'),
array(
'span' => array(
'class' => array(),
),
)
),
wp_kses_post(get_the_title())
),
'<span class="edit-link">',
'</span>'
);
?>
</footer><!-- .entry-footer -->
<?php endif; ?>
</article><!-- #post-<?php the_ID(); ?> -->