__( 'Displays most Popular Posts with Thumbnail.','mythemeshop' ) ) ); } public function form( $instance ) { $defaults = array( 'comment_num' => 1, 'date' => 1, 'days' => 30, 'show_thumb3' => 1, 'show_excerpt' => 1, 'excerpt_length' => 10, ); $instance = wp_parse_args((array) $instance, $defaults); $title = isset( $instance[ 'title' ] ) ? $instance[ 'title' ] : __( 'Popular Posts','mythemeshop' ); $qty = isset( $instance[ 'qty' ] ) ? intval( $instance[ 'qty' ] ) : 5; $comment_num = isset( $instance[ 'comment_num' ] ) ? intval( $instance[ 'comment_num' ] ) : 1; $date = isset( $instance[ 'date' ] ) ? intval( $instance[ 'date' ] ) : 1; $days = isset( $instance[ 'days' ] ) ? intval( $instance[ 'days' ] ) : 30; $show_thumb3 = isset( $instance[ 'show_thumb3' ] ) ? intval( $instance[ 'show_thumb3' ] ) : 1; $show_excerpt = isset( $instance[ 'show_excerpt' ] ) ? esc_attr( $instance[ 'show_excerpt' ] ) : 1; $excerpt_length = isset( $instance[ 'excerpt_length' ] ) ? intval( $instance[ 'excerpt_length' ] ) : 10; ?>
'" . date('Y-m-d', strtotime('-'.$popular_days.' days')) . "'"; return $where; } $popular = get_posts( array( 'suppress_filters' => false, 'ignore_sticky_posts' => 1, 'orderby' => 'comment_count', 'numberposts' => $qty ) ); echo '