Файловый менеджер - Редактировать - /var/www/portal.bdu.ac.bd/public_html/wp-content/themes/bduWP/framework/widgets/widget-posts.php
Назад
<?php add_action( 'widgets_init', 'tie_posts_list_widget' ); function tie_posts_list_widget() { register_widget( 'tie_posts_list' ); } class tie_posts_list extends WP_Widget { public function __construct(){ $widget_ops = array( 'classname' => 'posts-list' ); $control_ops = array( 'width' => 250, 'height' => 350, 'id_base' => 'posts-list-widget' ); parent::__construct( 'posts-list-widget',THEME_NAME .' - '. __( 'Posts list' , 'tie'), $widget_ops, $control_ops ); } public function widget( $args, $instance ) { extract( $args ); $title = apply_filters( 'widget_title', empty( $instance['title'] ) ? '' : $instance['title'], $instance, $this->id_base ); $no_of_posts = $instance['no_of_posts']; $posts_order = $instance['posts_order']; $thumb = ! empty( $instance['thumb'] ) ? $instance['thumb'] : false; echo $before_widget; echo $before_title; echo $title ; ?> <?php echo $after_title; ?> <ul> <?php if( $posts_order == 'popular' ) tie_popular_posts($no_of_posts , $thumb); elseif( $posts_order == 'views' ) tie_most_viewed($no_of_posts , $thumb); elseif( $posts_order == 'random' ) tie_random_posts($no_of_posts , $thumb); elseif( $posts_order == 'best' ) tie_best_reviews_posts($no_of_posts , $thumb); else tie_last_posts($no_of_posts , $thumb)?> </ul> <div class="clear"></div> <?php echo $after_widget; } public function update( $new_instance, $old_instance ) { $instance = $old_instance; $instance['title'] = ! empty( $new_instance['title'] ) ? $new_instance['title'] : false; $instance['no_of_posts'] = ! empty( $new_instance['no_of_posts'] ) ? $new_instance['no_of_posts'] : false; $instance['posts_order'] = ! empty( $new_instance['posts_order'] ) ? $new_instance['posts_order'] : false; $instance['thumb'] = ! empty( $new_instance['thumb'] ) ? $new_instance['thumb'] : false; return $instance; } public function form( $instance ) { $defaults = array( 'title' =>__('Recent Posts' , 'tie') , 'no_of_posts' => '5' , 'posts_order' => 'latest', 'thumb' => 'true' ); $instance = wp_parse_args( (array) $instance, $defaults ); ?> <p> <label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:' , 'tie') ?></label> <input id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" value="<?php if( !empty($instance['posts_order']) ) echo $instance['title']; ?>" class="widefat" type="text" /> </p> <p> <label for="<?php echo $this->get_field_id( 'no_of_posts' ); ?>"><?php _e( 'Number of posts to show:' , 'tie') ?></label> <input id="<?php echo $this->get_field_id( 'no_of_posts' ); ?>" name="<?php echo $this->get_field_name( 'no_of_posts' ); ?>" value="<?php if( !empty($instance['no_of_posts']) ) echo $instance['no_of_posts']; ?>" type="text" size="3" /> </p> <p> <label for="<?php echo $this->get_field_id( 'posts_order' ); ?>"><?php _e( 'Posts order' , 'tie') ?></label> <select id="<?php echo $this->get_field_id( 'posts_order' ); ?>" name="<?php echo $this->get_field_name( 'posts_order' ); ?>" > <option value="latest" <?php if( !empty($instance['posts_order']) && $instance['posts_order'] == 'latest' ) echo "selected=\"selected\""; else echo ""; ?>><?php _e( 'Most recent' , 'tie') ?></option> <option value="random" <?php if( !empty($instance['posts_order']) && $instance['posts_order'] == 'random' ) echo "selected=\"selected\""; else echo ""; ?>><?php _e( 'Random' , 'tie') ?></option> <option value="popular" <?php if( !empty($instance['posts_order']) && $instance['posts_order'] == 'popular' ) echo "selected=\"selected\""; else echo ""; ?>><?php _e( 'Popular / Comments' , 'tie') ?></option> <?php if( tie_get_option( 'post_views' ) ){ ?> <option value="views" <?php if( !empty($instance['posts_order']) && $instance['posts_order'] == 'views' ) echo "selected=\"selected\""; else echo ""; ?>><?php _e( 'Popular / Views' , 'tie') ?></option> <?php } ?> <option value="best" <?php if( !empty($instance['posts_order']) && $instance['posts_order'] == 'best' ) echo "selected=\"selected\""; else echo ""; ?>><?php _e( 'Best Reviews' , 'tie') ?></option> </select> </p> <p> <label for="<?php echo $this->get_field_id( 'thumb' ); ?>"><?php _e( 'Display Thumbnails:' , 'tie') ?></label> <input id="<?php echo $this->get_field_id( 'thumb' ); ?>" name="<?php echo $this->get_field_name( 'thumb' ); ?>" value="true" <?php if( !empty( $instance['thumb'] ) ) echo 'checked="checked"'; ?> type="checkbox" /> </p> <?php } }
| ver. 1.4 |
Github
|
.
| PHP 7.4.3-4ubuntu2.28 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка