Plugin Directory

Changeset 945137

Timestamp:
07/08/2014 06:30:49 PM (10 years ago)
Author:
wpsmith
Message:

1.1.8

Location:
genesis-featured-content-widget/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • genesis-featured-content-widget/trunk/gs-featured-content-widget.php

    r945084 r945137  
    44 * Plugin URI: https://wpsmith.net/
    55 * Description: Based on the Genesis Featured Widget Amplified for additional functionality which allows support for custom post types, taxonomies, and extends the flexibility of the widget via action hooks to allow the elements to be re-positioned or other elements to be added.
    6  * Version: 1.1.7
     6 * Version: 1.1.
    77 * Author: Travis Smith
    88 * Author URI: http://wpsmith.net/
     
    8181 */
    8282function gsfc_widgets_init() {
     83
     84
     85
    8386    $gfwa = genesis_get_option( 'gsfc_gfwa' );
    8487    if ( class_exists( 'Genesis_Featured_Widget_Amplified' ) && $gfwa ) {
  • genesis-featured-content-widget/trunk/readme.txt

    r945084 r945137  
    8484
    8585== Changelog ==
     86
     87
     88
     89
     90
    86911.1.7 (07/18/2014)
    8792* Fixed include/exclude issue. #28
     
    89941.1.6 (07/18/2014)
    9095* Fixed meta_value_numeric to show meta_key input. TY @4WardMotion.
     96
    9197
    92981.1.2 (01/12/2013)
  • genesis-featured-content-widget/trunk/widget.php

    r945084 r945137  
    352352        $byline = '';
    353353        if ( !empty( $instance['post_info'] ) ) {
    354             $byline = sprintf( '<p class="byline post-info">%s</p>', do_shortcode( esc_html( $instance['post_info'] ) ) );
     354            $byline = sprintf( '<p class="byline post-info">%s</p>', do_shortcode( ) );
    355355        }
    356356       
     
    473473       
    474474        //* Custom Link or Permalink
    475         $link = $instance['link_title_field'] && genesis_get_custom_field( $instance['link_title_field']) ? genesis_get_custom_field( $instance['link_title_field']) : get_permalink();
     475        $link = $instance['link_title) : get_permalink();
    476476       
    477477        //* Add Link to Title?
     
    537537    public static function do_post_meta( $instance ) {
    538538        if ( ! empty( $instance['show_archive_line'] ) && ! empty( $instance['post_meta'] ) )
    539             printf( '<p class="post-meta">%s</p>', do_shortcode( esc_html( $instance['post_meta'] ) ) );
     539            printf( '<p class="post-meta">%s</p>', do_shortcode( ) );
    540540    }
    541541   
     
    21592159        $new_instance['page_id']         = 'page' !== $new_instance['post_type'] ? '' : absint( $new_instance['page_id'] );
    21602160        $new_instance['include_exclude'] = 'page' !== $new_instance['post_type'] ? $new_instance['include_exclude'] : '';
     2161
    21612162
    21622163        return apply_filters( 'gsfc_update', $new_instance, $old_instance );
Note: See TracChangeset for help on using the changeset viewer.