Plugin Directory

Changeset 1529414


Ignore:
Timestamp:
11/07/2016 08:44:41 AM (9 years ago)
Author:
shahpranaf
Message:

Text upate and minor bug and security fixes

Location:
hide-featured-image/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • hide-featured-image/trunk/index.php

    r1397833 r1529414  
    88  Description: To show/hide featured images on individual posts.
    99
    10   Version: 1.1
     10  Version: 1.2
    1111
    1212  Author: shahpranaf
     
    3939
    4040    foreach ($sh_post_types as $post_type) {
    41         add_meta_box( 'hide_featured', __( 'Show or Hide Featured Image', 'HideImage' ), 'sh_featured_box', $post_type, 'side', 'default' );
     41        add_meta_box( 'hide_featured', __( 'Hide Featured Image?', 'HideImage' ), 'sh_featured_box', $post_type, 'side', 'default' );
    4242    }
    4343       
     
    156156                              <?php $hide_image = get_option( 'sh_hide_all_image' ); ?>
    157157                              <table class="form-table">
    158                                    <tr valign="top"><th scope="row"><?php _e( 'Hide from all Posts(not Custom Post Type)?', 'HideImage' ); ?></th>
     158                                   <tr valign="top"><th scope="row"><?php _e( 'Hide Image from all Posts(not Custom Post Type)?', 'HideImage' ); ?></th>
    159159                                        <td>
    160160                                            <?php $selected = ( isset( $hide_image['post_image'] ) ) ? $hide_image['post_image'] : 0; ?>                                                 
     
    163163                                        </td>
    164164                                    </tr>
    165                                     <tr valign="top"><th scope="row"><?php _e( 'Hide from all Pages?', 'HideImage' ); ?></th>
     165                                    <tr valign="top"><th scope="row"><?php _e( 'Hide Image from all Pages?', 'HideImage' ); ?></th>
    166166                                        <td>
    167167                                            <?php $selected = ( isset( $hide_image['page_image'] ) ) ? $hide_image['page_image'] : 0; ?>                                                 
  • hide-featured-image/trunk/readme.txt

    r1397833 r1529414  
    44Stable tag: trunk
    55Requires at least: 3.0.1
    6 Tested up to: 4.5
     6Tested up to: 4.6.1
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    1414There are instances when one wants to show featured image on single post and hide it on another post.
    1515This plugin will allow you to show or hide featured image from single post page. It supports custom post types also.
     16
     17For any query or details please visit [Plugin Home](http://shahpranav.com/2015/05/hide-featured-image-on-single-post/)
    1618
    1719
     
    4244== Changelog ==
    4345
    44 = 1.0 =
     46= 1.2 =
     47* Update description and confusing text.
     48* Minor bugs and security update.
     49
     50= 1.1 =
    4551* Added page support
    4652* Added option to hide featured image on all posts/pages
Note: See TracChangeset for help on using the changeset viewer.