Changeset 2148731
- Timestamp:
- 08/30/2019 10:01:35 PM (7 years ago)
- Location:
- wp-advanced-posts-widget/trunk
- Files:
-
- 2 edited
-
inc/class-wpapw-widget.php (modified) (2 diffs)
-
wpapw.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-advanced-posts-widget/trunk/inc/class-wpapw-widget.php
r2148677 r2148731 161 161 162 162 <p> 163 <label for="<?php echo esc_attr( $this->get_field_id( 'sort' ) ); ?>"><strong><?php esc_html_e( 'Sort by', 'wpapw' ); ?>:</ label>163 <label for="<?php echo esc_attr( $this->get_field_id( 'sort' ) ); ?>"><strong><?php esc_html_e( 'Sort by', 'wpapw' ); ?>:</strong> </label> 164 164 <select id="<?php echo esc_attr( $this->get_field_id( 'sort' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'sort' ) ); ?>" class="widefat"> 165 165 <option value="latest" <?php selected( 'latest', $sort ); ?>><?php esc_html_e( 'Latest', 'wpapw' ); ?></option> … … 176 176 177 177 <p> 178 <label for="<?php echo esc_attr( $this->get_field_id( 'layout' ) ); ?>">< ?php esc_html_e( 'Layout', 'wpapw' ); ?>:</strong></label>178 <label for="<?php echo esc_attr( $this->get_field_id( 'layout' ) ); ?>"><strong> <?php esc_html_e( 'Layout', 'wpapw' ); ?>:</strong></label> 179 179 <select id="<?php echo esc_attr( $this->get_field_id( 'layout' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'layout' ) ); ?>" class="widefat"> 180 180 <option value="small" <?php selected( 'small', $layout ); ?>><?php esc_html_e( 'List', 'wpapw' ); ?></option> -
wp-advanced-posts-widget/trunk/wpapw.php
r2148677 r2148731 6 6 * Plugin URI: https://github.com/lakiAlex/wp-advanced-posts-widget 7 7 * Description: WP Advanced Posts Widget is a no fuss WordPress widget to showcase your latest or trending posts. 8 * Version: 1.0. 08 * Version: 1.0.1 9 9 * Author: Lazar Momcilovic 10 10 * Author URI: https://github.com/lakiAlex/ … … 25 25 * Rename this for your plugin and update it as you release new versions. 26 26 */ 27 define( 'WPAPW_VERSION', '1.0. 0' );27 define( 'WPAPW_VERSION', '1.0.1' ); 28 28 29 29 /**
Note: See TracChangeset
for help on using the changeset viewer.