Plugin Directory

Changeset 2148731


Ignore:
Timestamp:
08/30/2019 10:01:35 PM (7 years ago)
Author:
lakialex
Message:

Instances html structure fix

Location:
wp-advanced-posts-widget/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wp-advanced-posts-widget/trunk/inc/class-wpapw-widget.php

    r2148677 r2148731  
    161161       
    162162        <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>
    164164            <select id="<?php echo esc_attr( $this->get_field_id( 'sort' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'sort' ) ); ?>" class="widefat">
    165165                <option value="latest" <?php selected( 'latest', $sort ); ?>><?php esc_html_e( 'Latest', 'wpapw' ); ?></option>
     
    176176       
    177177        <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>
    179179            <select id="<?php echo esc_attr( $this->get_field_id( 'layout' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'layout' ) ); ?>" class="widefat">
    180180                <option value="small" <?php selected( 'small', $layout ); ?>><?php esc_html_e( 'List', 'wpapw' ); ?></option>
  • wp-advanced-posts-widget/trunk/wpapw.php

    r2148677 r2148731  
    66 * Plugin URI:        https://github.com/lakiAlex/wp-advanced-posts-widget
    77 * Description:       WP Advanced Posts Widget is a no fuss WordPress widget to showcase your latest or trending posts.
    8  * Version:           1.0.0
     8 * Version:           1.0.1
    99 * Author:            Lazar Momcilovic
    1010 * Author URI:        https://github.com/lakiAlex/
     
    2525 * Rename this for your plugin and update it as you release new versions.
    2626 */
    27 define( 'WPAPW_VERSION', '1.0.0' );
     27define( 'WPAPW_VERSION', '1.0.1' );
    2828
    2929/**
Note: See TracChangeset for help on using the changeset viewer.