| Server IP : 38.190.208.107 / Your IP : 216.73.217.46 Web Server : nginx/1.28.1 System : Linux ht2026040333114 6.1.0-10-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.37-1 (2023-07-03) x86_64 User : root ( 0) PHP Version : 8.2.28 Disable Function : 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,eval,assert,passthru,system,exec,shell_exec,popen,proc_open MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /www/wwwroot/wp.5/wp-content/themes/woodmart/inc/widgets/ |
Upload File : |
<?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName
/**
* Register recent posts widget
*
* @package woodmart
*/
if ( ! defined( 'WOODMART_THEME_DIR' ) ) {
exit( 'No direct script access allowed' );
}
/**
* Register recent posts widget.
*/
class WOODMART_Recent_Posts extends WPH_Widget {
/**
* Constructor.
*/
public function __construct() {
$args = array(
'label' => esc_html__( 'WOODMART Recent Posts', 'woodmart' ),
'description' => esc_html__( 'An advanced widget that gives you total control over the output of your site’s most recent Posts.', 'woodmart' ),
'slug' => 'woodmart-recent-posts',
);
$this->create_widget( $args );
}
/**
* Render widget.
*
* @param array $args Widget arguments.
* @param array $instance Widget instance.
*/
public function widget( $args, $instance ) {
extract( $args ); // phpcs:ignore WordPress.PHP.DontExtract.extract_extract
echo wp_kses_post( $before_widget );
if ( ! empty( $instance['title'] ) ) {
echo wp_kses_post( $before_title ) . apply_filters( 'widget_title', $instance['title'], $instance, $this->id_base ) . wp_kses_post( $after_title ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
}
$offset = ( isset( $instance['offset'] ) ) ? $instance['offset'] : 0;
$posts_per_page = ( isset( $instance['limit'] ) ) ? $instance['limit'] : 5;
$orderby = ( isset( $instance['orderby'] ) ) ? $instance['orderby'] : 'date';
$category = ( isset( $instance['category'] ) ) ? $instance['category'] : 'all';
$order = ( isset( $instance['order'] ) ) ? $instance['order'] : 'DESC';
$thumb_height = ( isset( $instance['thumb_height'] ) ) ? $instance['thumb_height'] : 45;
$thumb_width = ( isset( $instance['thumb_width'] ) ) ? $instance['thumb_width'] : 45;
$thumb = ( isset( $instance['thumb'] ) ) ? $instance['thumb'] : true;
$comment_count = ( isset( $instance['comment_count'] ) ) ? $instance['comment_count'] : true;
$date = ( isset( $instance['date'] ) ) ? $instance['date'] : true;
$query = array(
'offset' => $offset,
'posts_per_page' => $posts_per_page,
'orderby' => $orderby,
'order' => $order,
);
if ( 'all' !== $category ) {
$query['tax_query'] = array( // phpcs:ignore WordPress.DB.SlowDBQuery.slow_db_query_tax_query
array(
'taxonomy' => 'category',
'field' => 'id',
'terms' => $category,
),
);
}
$posts = new WP_Query( $query );
?>
<?php if ( $posts->have_posts() ) : ?>
<ul class="woodmart-recent-posts-list">
<?php
while ( $posts->have_posts() ) :
$posts->the_post();
?>
<li>
<?php if ( $thumb ) : ?>
<?php if ( has_post_thumbnail() ) : ?>
<a class="recent-posts-thumbnail" href="<?php echo esc_url( get_permalink() ); ?>" rel="bookmark" aria-label="<?php esc_html_e( 'Post thumbnail', 'woodmart' ); ?>">
<?php echo woodmart_get_post_thumbnail( array( $thumb_width, $thumb_height ) ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
</a>
<?php endif ?>
<?php endif ?>
<div class="recent-posts-info">
<?php /* translators: %s: post title. */ ?>
<div class="wd-entities-title title"><a href="<?php echo esc_url( get_permalink() ); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'woodmart' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php echo esc_html( get_the_title() ); ?></a></div>
<?php if ( $date ) : ?>
<?php $date = get_the_date(); ?>
<time class="recent-posts-time" datetime="<?php echo esc_html( get_the_date( 'c' ) ); ?>"><?php echo esc_html( $date ); ?></time>
<?php endif ?>
<?php
if ( $comment_count ) {
if ( get_comments_number() === 0 ) {
$comments = esc_html__( 'No Comments', 'woodmart' );
} elseif ( get_comments_number() > 1 ) {
// translators: %s: comments number.
$comments = sprintf( esc_html__( '%s Comments', 'woodmart' ), get_comments_number() );
} else {
$comments = esc_html__( '1 Comment', 'woodmart' );
}
echo '<a class="recent-posts-comment" href="' . get_comments_link() . '">' . $comments . '</a>'; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
}
?>
</div>
</li>
<?php endwhile; ?>
</ul>
<?php endif ?>
<?php
wp_reset_postdata();
echo wp_kses_post( $after_widget );
}
/**
* Update widget.
*
* @param array $new_instance New instance.
* @param array $old_instance Old instance.
* @return array
*/
public function update( $new_instance, $old_instance ) {
$instance = $old_instance;
$instance['title'] = sanitize_text_field( $new_instance['title'] );
$instance['limit'] = intval( $new_instance['limit'] );
$instance['offset'] = intval( $new_instance['offset'] );
$instance['order'] = stripslashes( $new_instance['order'] );
$instance['orderby'] = stripslashes( $new_instance['orderby'] );
$instance['category'] = $new_instance['category'];
$instance['date'] = isset( $new_instance['date'] ) ? (bool) $new_instance['date'] : '';
$instance['comment_count'] = isset( $new_instance['comment_count'] ) ? (bool) $new_instance['comment_count'] : '';
$instance['thumb'] = isset( $new_instance['thumb'] ) ? (bool) $new_instance['thumb'] : '';
$instance['thumb_height'] = intval( $new_instance['thumb_height'] );
$instance['thumb_width'] = intval( $new_instance['thumb_width'] );
return $instance;
}
/**
* Form.
*
* @param array $instance Instance.
*/
public function form( $instance ) {
$defaults = array(
'title' => esc_attr__( 'Recent Posts', 'woodmart' ),
'limit' => 5,
'offset' => 0,
'order' => 'DESC',
'orderby' => 'date',
'category' => 'all',
'thumb' => true,
'thumb_height' => 45,
'thumb_width' => 45,
'date' => true,
'comment_count' => true,
);
$instance = wp_parse_args( (array) $instance, $defaults );
?>
<div class="wd-widget-field">
<label for="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>"><?php esc_html_e( 'Title', 'woodmart' ); ?>:</label>
<input class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'title' ) ); ?>" type="text" value="<?php echo esc_attr( $instance['title'] ); ?>" />
</div>
<div class="wd-widget-field">
<label for="<?php echo esc_attr( $this->get_field_id( 'order' ) ); ?>"><?php esc_html_e( 'Order', 'woodmart' ); ?>:</label>
<select class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'order' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'order' ) ); ?>" style="width:100%;">
<option value="DESC" <?php selected( $instance['order'], 'DESC' ); ?>><?php esc_html_e( 'Descending', 'woodmart' ); ?></option>
<option value="ASC" <?php selected( $instance['order'], 'ASC' ); ?>><?php esc_html_e( 'Ascending', 'woodmart' ); ?></option>
</select>
</div>
<div class="wd-widget-field">
<label for="<?php echo esc_attr( $this->get_field_id( 'orderby' ) ); ?>"><?php esc_html_e( 'Orderby', 'woodmart' ); ?>:</label>
<select class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'orderby' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'orderby' ) ); ?>" style="width:100%;">
<option value="ID" <?php selected( $instance['orderby'], 'ID' ); ?>><?php esc_html_e( 'ID', 'woodmart' ); ?></option>
<option value="author" <?php selected( $instance['orderby'], 'author' ); ?>><?php esc_html_e( 'Author', 'woodmart' ); ?></option>
<option value="title" <?php selected( $instance['orderby'], 'title' ); ?>><?php esc_html_e( 'Title', 'woodmart' ); ?></option>
<option value="date" <?php selected( $instance['orderby'], 'date' ); ?>><?php esc_html_e( 'Date', 'woodmart' ); ?></option>
<option value="modified" <?php selected( $instance['orderby'], 'modified' ); ?>><?php esc_html_e( 'Modified', 'woodmart' ); ?></option>
<option value="rand" <?php selected( $instance['orderby'], 'rand' ); ?>><?php esc_html_e( 'Random', 'woodmart' ); ?></option>
<option value="comment_count" <?php selected( $instance['orderby'], 'comment_count' ); ?>><?php esc_html_e( 'Comment Count', 'woodmart' ); ?></option>
<option value="menu_order" <?php selected( $instance['orderby'], 'menu_order' ); ?>><?php esc_html_e( 'Menu Order', 'woodmart' ); ?></option>
</select>
</div>
<div class="wd-widget-field">
<label for="<?php echo esc_attr( $this->get_field_id( 'category' ) ); ?>"><?php esc_html_e( 'Category', 'woodmart' ); ?>:</label>
<select class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'category' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'category' ) ); ?>" style="width:100%;">
<option value="all" <?php selected( $instance['category'], 'all' ); ?>><?php esc_html_e( 'All', 'woodmart' ); ?></option>
<?php foreach ( get_categories() as $category ) : ?>
<option value="<?php echo esc_attr( $category->term_id ); ?>" <?php selected( $instance['category'], $category->term_id ); ?>><?php echo esc_html( $category->name ); ?></option>
<?php endforeach; ?>
</select>
</div>
<div class="wd-widget-field">
<label for="<?php echo esc_attr( $this->get_field_id( 'limit' ) ); ?>"><?php esc_html_e( 'Number of posts to show', 'woodmart' ); ?>:</label>
<input class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'limit' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'limit' ) ); ?>" type="number" step="1" min="-1" value="<?php echo esc_attr( (int) $instance['limit'] ); ?>" />
<small><?php esc_html_e( 'The maximum number of posts to show', 'woodmart' ); ?></small>
</div>
<div class="wd-widget-field">
<label for="<?php echo esc_attr( $this->get_field_id( 'offset' ) ); ?>"><?php esc_html_e( 'Offset', 'woodmart' ); ?>:</label>
<input class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'offset' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'offset' ) ); ?>" type="number" step="1" min="0" value="<?php echo esc_attr( (int) $instance['offset'] ); ?>" />
<small><?php esc_html_e( 'The number of posts to skip', 'woodmart' ); ?></small>
</div>
<div class="wd-widget-field wd-type-checkbox">
<label for="<?php echo esc_attr( $this->get_field_id( 'thumb' ) ); ?>"><?php esc_html_e( 'Display Thumbnail', 'woodmart' ); ?></label>
<input id="<?php echo esc_attr( $this->get_field_id( 'thumb' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'thumb' ) ); ?>" type="checkbox" <?php checked( $instance['thumb'] ); ?> />
</div>
<div class="wd-widget-field">
<label style="display: block;" class="woodmart-block" for="<?php echo esc_attr( $this->get_field_id( 'thumb_height' ) ); ?>"><?php esc_html_e( 'Thumbnail (height)', 'woodmart' ); ?>:</label>
<input style="display: block;" class= "small-input" id="<?php echo esc_attr( $this->get_field_id( 'thumb_height' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'thumb_height' ) ); ?>" type="number" step="1" min="0" value="<?php echo esc_attr( (int) $instance['thumb_height'] ); ?>" />
</div>
<div class="wd-widget-field">
<label style="display: block;" class="woodmart-block" for="<?php echo esc_attr( $this->get_field_id( 'thumb_height' ) ); ?>"><?php esc_html_e( 'Thumbnail (width)', 'woodmart' ); ?>:</label>
<input style="display: block;" class="small-input" id="<?php echo esc_attr( $this->get_field_id( 'thumb_width' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'thumb_width' ) ); ?>" type="number" step="1" min="0" value="<?php echo esc_attr( (int) $instance['thumb_width'] ); ?>"/>
</div>
<div class="wd-widget-field wd-type-checkbox">
<label for="<?php echo esc_attr( $this->get_field_id( 'comment_count' ) ); ?>"><?php esc_html_e( 'Display Comment Count', 'woodmart' ); ?></label>
<input id="<?php echo esc_attr( $this->get_field_id( 'comment_count' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'comment_count' ) ); ?>" type="checkbox" <?php checked( $instance['comment_count'] ); ?> />
</div>
<div class="wd-widget-field wd-type-checkbox">
<label for="<?php echo esc_attr( $this->get_field_id( 'date' ) ); ?>"><?php esc_html_e( 'Display Date', 'woodmart' ); ?></label>
<input id="<?php echo esc_attr( $this->get_field_id( 'date' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'date' ) ); ?>" type="checkbox" <?php checked( $instance['date'] ); ?> />
</div>
<?php
}
}