HEX
Server: Apache/2
System: Linux mail.lnwhostname.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
User: suanchonac (1128)
PHP: 7.4.25
Disabled: exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Upload Files
File: /home/suanchonac/domains/suanchon.ac.th/private_html/www2/wp-content/themes/enternews/single.php
<?php
/**
 * The template for displaying all single posts
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
 *
 * @package EnterNews
 */

get_header();

?>
    <div class="af-container-block-wrapper clearfix">
        <div id="primary" class="content-area ">
            <main id="main" class="site-main ">
                <?php
                while (have_posts()) : the_post(); ?>
                    <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>


                        <header class="entry-header">

                            <div class="enternews-entry-header-details-wrap">
                                <?php do_action('enternews_action_single_entry_details'); ?>
                            </div>
                        </header><!-- .entry-header -->

                        <div class="enternews-entry-featured-image-wrap float-l">
                            <?php do_action('enternews_action_single_featured_image'); ?>
                        </div>


                        <?php
                        if (has_excerpt(get_the_ID())):
                            $single_posts_excerpt = get_the_excerpt(get_the_ID());
                            if (!empty($single_posts_excerpt)):
                                ?>
                                <div class="post-excerpt">
                                    <?php echo wp_kses_post(get_the_excerpt(get_the_ID())); ?>
                                </div>
                            <?php endif; ?>
                        <?php endif; ?>

                        <div class="entry-content-wrap read-single">
                            <?php get_template_part('template-parts/content', get_post_type()); ?>
                        </div>

                        <div class="aft-comment-related-wrap">
                            <?php
                            // If comments are open or we have at least one comment, load up the comment template.
                            if (comments_open() || get_comments_number()) :
                                comments_template();
                            endif;
                            ?>

                            <?php
                            $show_related_posts = esc_attr(enternews_get_option('single_show_related_posts'));
                            if ($show_related_posts):
                                if ('post' === get_post_type()) :
                                    enternews_get_block('related');
                                endif;
                            endif;
                            ?>
                        </div>


                    </article>
                <?php

                endwhile; // End of the loop.
                ?>

            </main><!-- #main -->
        </div><!-- #primary -->
        <?php
        get_sidebar(); ?>
    </div>
<?php
get_footer();