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/inc/widgets/widget-posts-single-column.php
<?php
if (!class_exists('MoreNews_Express_Posts_Single_Column')) :
    /**
     * Adds MoreNews_Express_Posts_Single_Column widget.
     */
    class MoreNews_Express_Posts_Single_Column extends MoreNews_Widget_Base
    {
        /**
         * Sets up a new widget instance.
         *
         * @since 1.0.0
         */
        function __construct()
        {
            $this->text_fields = array(
                'morenews-posts-list-title',
                'morenews-posts-slider-number'

            );
            $this->select_fields = array(

                'morenews-select-category',

            );

            $widget_ops = array(
                'classname' => 'morenews_posts_single_column_widget',
                'description' => __('Displays posts single column from selected categories.', 'morenews'),
                'customize_selective_refresh' => false,
            );

            parent::__construct('morenews_posts_single_column', __('AFTMN Post Single Column', 'morenews'), $widget_ops);
        }

        /**
         * Front-end display of widget.
         *
         * @see WP_Widget::widget()
         *
         * @param array $args Widget arguments.
         * @param array $instance Saved values from database.
         */

        public function widget($args, $instance)
        {

            $instance = parent::morenews_sanitize_data($instance, $instance);


            /** This filter is documented in wp-includes/default-widgets.php */

            $title_1 = apply_filters('widget_title', $instance['morenews-posts-list-title'], $instance, $this->id_base);


            $morenews_category = !empty($instance['morenews-select-category']) ? $instance['morenews-select-category'] : '0';

            $color_class = '';
            if(absint($morenews_category) > 0){
                $color_id = "category_color_" . $morenews_category;
                // retrieve the existing value(s) for this meta field. This returns an array
                $term_meta = get_option($color_id);
                $color_class = ($term_meta) ? $term_meta['color_class_term_meta'] : 'category-color-1';
            }



            // open the widget container
            echo $args['before_widget'];
            ?>
                <section class="aft-blocks aft-featured-category-section archive-list-post featured-cate-sec pad-v">
                    <?php if (!empty($title_1)): ?>
                        <?php morenews_render_section_title($title_1, $color_class); ?>
                    <?php endif; ?>
                    <?php $morenews_all_posts_vertical = morenews_get_posts(5, $morenews_category); ?>

                    <div class="full-wid-resp af-widget-body clearfix">
                        <?php
                            if ($morenews_all_posts_vertical->have_posts()) :
                                while ($morenews_all_posts_vertical->have_posts()) : $morenews_all_posts_vertical->the_post();
                                    global $post;

                                    ?>
                                    <div class="list-style">
                                        <?php do_action('morenews_action_loop_list', $post->ID, 'medium_large', 0, true, true, true, true); ?>
                                    </div>
                                <?php
                                endwhile;
                            endif;
                            wp_reset_postdata();
                        ?>
                    </div>
                </section>
            <?php
            // close the widget container
            echo $args['after_widget'];
        }

        /**
         * Back-end widget form.
         *
         * @see WP_Widget::form()
         *
         * @param array $instance Previously saved values from database.
         */
        public function form($instance)
        {
            $this->form_instance = $instance;


            //print_pre($terms);
            $categories = morenews_get_terms();



            if (isset($categories) && !empty($categories)) {
                // generate the text input for the title of the widget. Note that the first parameter matches text_fields array entry
                echo parent::morenews_generate_text_input('morenews-posts-list-title', __('Title', 'morenews'), 'Post Single Column');
                echo parent::morenews_generate_select_options('morenews-select-category', __('Select Category', 'morenews'), $categories);


            }

            //print_pre($terms);


        }

    }
endif;