HEX
Server: Apache
System: Linux srv13.cpanelhost.cl 3.10.0-962.3.2.lve1.5.38.el7.x86_64 #1 SMP Thu Jun 18 05:28:41 EDT 2020 x86_64
User: cca63905 (4205)
PHP: 7.3.20
Disabled: NONE
Upload Files
File: /home4/cca63905/.trash/wp-content/themes/accesspress-store/content-page.php
<?php
/**
 * The template used for displaying page content in page.php
 *
 * @package AccessPress Store
 */
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>

    <div class="entry-content">
        <?php if (has_post_thumbnail()): ?>
            <div class="post-thumbnail">
                <?php the_post_thumbnail('accesspress-blog-big-thumbnail'); ?>
            </div>
        <?php endif; ?>
        <div class="content-inner clearfix">
            <h2 class="post-title"><?php the_title(); ?></h2>
            <div class="content-page">
                <?php the_content(); ?>
            </div>
            <?php
            wp_link_pages(array(
                'before' => '<div class="page-links">' . esc_html__('Pages:', 'accesspress-store'),
                'after' => '</div>',
            ));
            ?>
        </div>
    </div><!-- .entry-content -->

</article><!-- #post-## -->