Changeset 2062747
- Timestamp:
- 04/04/2019 07:03:22 AM (7 years ago)
- Location:
- featured-posts-pro/trunk
- Files:
-
- 4 edited
-
README.txt (modified) (2 diffs)
-
admin/partials/featured_posts_pro-admin-display-custom-post.php (modified) (1 diff)
-
featured_posts_pro.php (modified) (2 diffs)
-
includes/class-featured_posts_pro-widget.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
featured-posts-pro/trunk/README.txt
r1575492 r2062747 4 4 Tags: featured, featured posts, featured post widget, plugin 5 5 Requires at least: 3.0.1 6 Tested up to: 4.7.17 Stable tag: 1. 3.96 Tested up to: 5.1.1 7 Stable tag: 1.4 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 106 106 = 1.3.8 = 107 107 bug fixes 108 109 = 1.4 = 110 fixed bug that prevented the plugin to be used on child theme. Thx to Shane Bill on identifying this issue. -
featured-posts-pro/trunk/admin/partials/featured_posts_pro-admin-display-custom-post.php
r1509899 r2062747 35 35 <td><?php echo $postType; ?></td> 36 36 <td class='column-is_featured'> 37 <?php 37 <?php 38 38 $isIncluded = (in_array($postType, $allowedPostTypes)); 39 39 ?> 40 <input value='<?php echo $postType; ?>' data-id='<?php echo $post_id; ?>'type="checkbox" name="is_post_featured[]" <?php checked($isIncluded, true) ?>>40 <input value='<?php echo $postType; ?>' type="checkbox" name="is_post_featured[]" <?php checked($isIncluded, true) ?>> 41 41 </td> 42 42 </tr> -
featured-posts-pro/trunk/featured_posts_pro.php
r1575492 r2062747 1 1 <?php 2 3 2 /** 4 3 * The plugin bootstrap file … … 17 16 * Plugin URI: http://lakshman.com.np 18 17 * Description: This plugin gives Administrator/Editor an easy option to mark posts, pages & custom posts as featured posts and provides a widget to list the recent featured posts. 19 * Version: 1. 3.918 * Version: 1.4 20 19 * Author: Laxman Thapa 21 20 * Author URI: http://lakshman.com.np -
featured-posts-pro/trunk/includes/class-featured_posts_pro-widget.php
r1509899 r2062747 103 103 <?php 104 104 //check theme template 105 $viewPath = get_template_directory().'/featured_posts_pro_tpls/tpl_featured_posts_pro_'.$widget_size.'.php'; 105 //$viewPath = get_template_directory().'/featured_posts_pro_tpls/tpl_featured_posts_pro_'.$widget_size.'.php'; 106 $viewPath = get_stylesheet_directory().'/featured_posts_pro_tpls/tpl_featured_posts_pro_'.$widget_size.'.php'; 106 107 if(file_exists($viewPath) && is_readable($viewPath)){ 107 108 //
Note: See TracChangeset
for help on using the changeset viewer.