HEX
Server: nginx/1.28.0
System: Linux yisu-68a5f20334161 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64
User: www (1000)
PHP: 8.2.28
Disabled: passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
Upload Files
File: /www/wwwroot/q.autos58.cn/wp-content/themes/morenews/single.php
<?php

/**
 * The template for displaying all single posts
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
 *
 * @package MoreNews
 */

get_header();

?>
<div class="section-block-upper">
    <div id="primary" class="content-area">
        <main id="main" class="site-main">
            <?php
            $social_share_icon_opt = morenews_get_option('single_post_social_share_view');
            if ($social_share_icon_opt == 'after-content') {
                $wrap_class = 'social-after-content';
            } else if ($social_share_icon_opt == 'side') {
                $wrap_class = 'social-vertical-share';
            } else {
                $wrap_class = 'social-after-title';
            }
            while (have_posts()) : the_post(); ?>
                <article id="post-<?php the_ID(); ?>" <?php post_class('af-single-article'); ?>>

                    <div class="entry-content-wrap read-single <?php echo esc_attr($wrap_class); ?>">

                        <?php

                        if (is_single()) {
                            $single_post_title_view = morenews_get_option('single_post_title_view');
                            if ($single_post_title_view == 'boxed') {
                                do_action('morenews_action_single_header');
                            }
                        }
                        ?>
                        <?php $social_share_icon_opt = morenews_get_option('single_post_social_share_view');
                        if ($social_share_icon_opt == 'after-content' || $social_share_icon_opt == 'side') {
                            morenews_single_post_social_share_icons($post->ID);
                        } ?>

                        <?php
                        if (has_post_thumbnail($post->ID)) :
                            $show_featured_image = morenews_get_option('single_show_featured_image');
                            if ($show_featured_image) :

                        ?>
                                <div class="read-img pos-rel">
                                    <?php morenews_post_thumbnail(); ?>                                    
                                </div>

                        <?php endif;
                        endif;
                        ?>

                        <?php
                        get_template_part('template-parts/content', get_post_type());
                        ?>
                    </div>



                    <?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 = morenews_get_option('single_show_related_posts');
                    if ($show_related_posts) :
                        if ('post' === get_post_type()) :
                            morenews_get_block('related');
                        endif;
                    endif;
                    ?>

                </article>
            <?php

            endwhile; // End of the loop...
            ?>

        </main><!-- #main -->
    </div><!-- #primary -->

    <?php
    get_sidebar();
    ?>
</div>
<?php
get_footer();