Changeset 905761
- Timestamp:
- 04/30/2014 05:45:44 PM (12 years ago)
- Location:
- simply-exclude/trunk
- Files:
-
- 3 edited
-
readme.txt (modified) (2 diffs)
-
simplyexclude.php (modified) (6 diffs)
-
simplyexclude_style_admin.css (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
simply-exclude/trunk/readme.txt
r900340 r905761 5 5 Requires at least: 3.7 6 6 Tested up to: 3.9 7 Stable tag: 2.0.6. 17 Stable tag: 2.0.6.2 8 8 License: GPLv2 9 9 License URI: http://www.opensource.org/licenses/GPL-2.0 … … 50 50 51 51 == Changelog == 52 53 = 2.0.6.2 = 54 - Corrected reported issue related to undefined 'action' settings in the widget hooks. Thanks Arnold. 55 - Cleanup some of the CSS related to settings used within the dashboard area. 52 56 53 57 = 2.0.6.1 = -
simply-exclude/trunk/simplyexclude.php
r768586 r905761 5 5 Description: Provides an interface to selectively exclude/include all Taxonomies, Post Types and Users from the 4 actions used by WordPress. is_front, is_archive, is_search, is_feed. Also provides access to some of the common widgets user like tag cloud and categories listings. 6 6 Author: Paul Menard 7 Version: 2.0.6. 17 Version: 2.0.6.2 8 8 Author URI: http://www.codehooligans.com 9 9 */ … … 33 33 public function __construct() { 34 34 35 $this->se_version = "2.0.6. 1";35 $this->se_version = "2.0.6.2"; 36 36 37 37 $this->admin_menu_label = __("Simply Exclude", SIMPLY_EXCLUDE_I18N_DOMAIN); … … 749 749 if (current_user_can('manage_options')) { 750 750 if (!isset($columns['se-actions'])) 751 $columns['se-actions'] = __('Simply Exclude', SIMPLY_EXCLUDE_I18N_DOMAIN). ' <a id="se-show-actions-panel" href="#">'. __('show', SIMPLY_EXCLUDE_I18N_DOMAIN) .'</a>';751 $columns['se-actions'] = '<a id="se-show-actions-panel" title="" href="#">'. __('Simply Exclude', SIMPLY_EXCLUDE_I18N_DOMAIN) .'</a>'; 752 752 } 753 753 return $columns; … … 2359 2359 $this->se_load_config(); 2360 2360 2361 //echo "widget_category<pre>"; print_r($this->se_cfg['data']['taxonomies']['category']['terms']['widget_category']); echo "</pre>"; 2362 2361 2363 if ( (isset($this->se_cfg['data']['taxonomies']['category']['terms']['widget_category'])) 2362 2364 && (count($this->se_cfg['data']['taxonomies']['category']['terms']['widget_category'])) ) 2363 2365 { 2364 $action = $this->se_cfg['data']['taxonomies']['category']['actions']['widget_category'] ['action'];2366 $action = $this->se_cfg['data']['taxonomies']['category']['actions']['widget_category']; 2365 2367 $terms = $this->se_cfg['data']['taxonomies']['category']['terms']['widget_category']; 2366 2368 … … 2414 2416 && (count($this->se_cfg['data']['taxonomies']['post_tag']['terms']['widget_tag_cloud'])) ) 2415 2417 { 2416 $action = $this->se_cfg['data']['taxonomies']['post_tag']['actions']['widget_tag_cloud'] ['action'];2418 $action = $this->se_cfg['data']['taxonomies']['post_tag']['actions']['widget_tag_cloud']; 2417 2419 $terms = $this->se_cfg['data']['taxonomies']['post_tag']['terms']['widget_tag_cloud']; 2418 2420 … … 2455 2457 && (count($this->se_cfg['data']['taxonomies']['category']['terms']['widget_tag_cloud'])) ) 2456 2458 { 2457 $action = $this->se_cfg['data']['taxonomies']['category']['actions']['widget_tag_cloud'] ['action'];2459 $action = $this->se_cfg['data']['taxonomies']['category']['actions']['widget_tag_cloud']; 2458 2460 $terms = $this->se_cfg['data']['taxonomies']['category']['terms']['widget_tag_cloud']; 2459 2461 -
simply-exclude/trunk/simplyexclude_style_admin.css
r768586 r905761 1 /* 1 2 input.se-term-input { 2 3 width: 15px; 3 4 float: left; 4 5 } 5 6 */ 6 7 table.simplyexclude-actions-panel td.action { 7 8 width: 20%; … … 50 51 } 51 52 53 td.column-se-actions ul.se-actions-list li input.se-term-input { 54 width: 15px; 55 /* float: left; */ 56 } 57 58 td.column-se-actions ul.se-actions-list li label { 59 /* float: left; */ 60 vertical-align: top; 61 } 62 63 52 64 .ui-accordion-header { 53 65 border-top-left-radius: 3px;
Note: See TracChangeset
for help on using the changeset viewer.