HEX
Server: Apache
System: Linux p3plzcpnl504740.prod.phx3.secureserver.net 4.18.0-553.141.2.lve.el8.x86_64 #1 SMP Wed Jul 8 16:10:02 UTC 2026 x86_64
User: l2pbkn5l6xav (4972877)
PHP: 7.2.34
Disabled: NONE
Upload Files
File: /home/l2pbkn5l6xav/public_html/wp-content/themes/total/inc/widgets/widget-latest-post.php
<?php
/**
 * @package Total
 */
add_action('widgets_init', 'total_register_latest_posts');

function total_register_latest_posts() {
    register_widget('total_latest_posts');
}

class Total_Latest_Posts extends WP_Widget {

    public function __construct() {
        $widget_ops = array('description' => __('A widget to display latest post with thumbnail.', 'total-plus'));
        parent::__construct('total_latest_posts', 'Total - Latest Posts', $widget_ops);
    }

    /**
     * Helper function that holds widget fields
     * Array is used in update and form functions
     */
    private function widget_fields() {
        $fields = array(
            'title' => array(
                'total_widgets_name' => 'title',
                'total_widgets_title' => __('Title', 'total'),
                'total_widgets_field_type' => 'text'
            ),
            'post_count' => array(
                'total_widgets_name' => 'post_count',
                'total_widgets_title' => __('No of Posts to Display', 'total'),
                'total_widgets_field_type' => 'number',
                'total_widgets_default' => '5'
            ),
            'display_thumb' => array(
                'total_widgets_name' => 'display_thumb',
                'total_widgets_title' => __('Display Thumbnail', 'total'),
                'total_widgets_field_type' => 'checkbox'
            ),
            'display_excerpt' => array(
                'total_widgets_name' => 'display_excerpt',
                'total_widgets_title' => __('Display Excerpt', 'total'),
                'total_widgets_field_type' => 'checkbox',
            ),
            'excerpt_letter_count' => array(
                'total_widgets_name' => 'excerpt_letter_count',
                'total_widgets_title' => __('No of Letter to Display in Excerpt', 'total'),
                'total_widgets_field_type' => 'number',
                'total_widgets_default' => '100'
            )
        );

        return $fields;
    }

    /**
     * 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) {
        extract($args);

        $title = isset($instance['title']) ? $instance['title'] : '';
        $post_count = isset($instance['post_count']) ? $instance['post_count'] : 5;
        $display_thumb = (isset($instance['display_thumb']) && $instance['display_thumb']) ? true : false;
        $display_excerpt = (isset($instance['display_excerpt']) && $instance['display_excerpt']) ? true : false;
        $excerpt_letter_count = isset($instance['excerpt_letter_count']) ? $instance['excerpt_letter_count'] : 100;
        $title_html_tag = isset($instance['title_html_tag']) ? $instance['title_html_tag'] : 'div';

        echo $before_widget;
        if (!empty($title)):
            echo $before_title . apply_filters('widget_title', $title) . $after_title;
        endif;
        ?>
        <ul class="ht-latest-posts">
            <?php
            $args = array(
                'post_type' => 'post',
                'posts_per_page' => $post_count
            );

            $query = new WP_Query($args);

            while ($query->have_posts()) : $query->the_post();
                ?>
                <li class="ht-clearfix">
                    <?php
                    if ($display_thumb && has_post_thumbnail()) {
                        $image = wp_get_attachment_image_src(get_post_thumbnail_id(get_the_ID()), 'thumbnail');
                        $image_alt = get_post_meta(get_the_ID(), '_wp_attachment_image_alt', true);
                        ?>
                        <div class="ht-lp-image">
                            <a href="<?php echo the_permalink(); ?>">
                                <img src="<?php echo esc_url($image[0]); ?>" alt="<?php echo esc_attr($image_alt); ?>">
                            </a>
                        </div>
                        <?php
                    }
                    ?>

                    <div class="ht-lp-content">
                        <h6 class="ht-lp-title">
                        <a href="<?php echo the_permalink(); ?>">
                            <?php the_title(); ?>
                        </a>
                        </h6>

                        <?php if ($display_excerpt) { ?>
                            <div class="ht-lp-excerpt">
                                <?php echo total_excerpt(get_the_content(), $excerpt_letter_count); ?>
                            </div>
                        <?php } ?>
                    </div>
                </li>   
                <?php
            endwhile;
            wp_reset_postdata();
            ?>
        </ul>
        <?php
        echo $after_widget;
    }

    /**
     * Sanitize widget form values as they are saved.
     *
     * @see WP_Widget::update()
     *
     * @param   array   $new_instance   Values just sent to be saved.
     * @param   array   $old_instance   Previously saved values from database.
     *
     * @uses    total_widgets_updated_field_value()     defined in widget-fields.php
     *
     * @return  array Updated safe values to be saved.
     */
    public function update($new_instance, $old_instance) {
        $instance = $old_instance;

        $widget_fields = $this->widget_fields();

        // Loop through fields
        foreach ($widget_fields as $widget_field) {

            extract($widget_field);

            // Use helper function to get updated field values
            $instance[$total_widgets_name] = total_widgets_updated_field_value($widget_field, $new_instance[$total_widgets_name]);
        }

        return $instance;
    }

    /**
     * Back-end widget form.
     *
     * @see WP_Widget::form()
     *
     * @param   array $instance Previously saved values from database.
     *
     * @uses    total_widgets_show_widget_field()       defined in widget-fields.php
     */
    public function form($instance) {
        $widget_fields = $this->widget_fields();

        // Loop through fields
        foreach ($widget_fields as $widget_field) {

            // Make array elements available as variables
            extract($widget_field);
            $total_widgets_field_value = !empty($instance[$total_widgets_name]) ? esc_attr($instance[$total_widgets_name]) : '';
            total_widgets_show_widget_field($this, $widget_field, $total_widgets_field_value);
        }
    }

}