Version Description
- 2014.08.18
- Tweak - Made post type args filterable (props lkraav).
Download this release
Release Info
| Developer | jameskoster |
| Plugin | |
| Version | 1.4.3 |
| Comparing to | |
| See all releases | |
Code changes from version 1.4.2 to 1.4.3
- classes/class-woothemes-features.php +1 -1
- readme.txt +6 -2
- woothemes-features.php +2 -2
classes/class-woothemes-features.php
CHANGED
|
@@ -109,7 +109,7 @@ class Woothemes_Features {
|
|
| 109 |
'menu_position' => 5,
|
| 110 |
'menu_icon' => ''
|
| 111 |
);
|
| 112 |
-
register_post_type( $this->token, $args );
|
| 113 |
} // End register_post_type()
|
| 114 |
|
| 115 |
/**
|
| 109 |
'menu_position' => 5,
|
| 110 |
'menu_icon' => ''
|
| 111 |
);
|
| 112 |
+
register_post_type( $this->token, apply_filters( 'woothemes_features_post_type_args', $args ) );
|
| 113 |
} // End register_post_type()
|
| 114 |
|
| 115 |
/**
|
readme.txt
CHANGED
|
@@ -3,8 +3,8 @@ Contributors: woothemes, mattyza, jameskoster, hlashbrooke
|
|
| 3 |
Donate link: http://woothemes.com/
|
| 4 |
Tags: features, widget, shortcode, template-tag, services
|
| 5 |
Requires at least: 3.4.2
|
| 6 |
-
Tested up to:
|
| 7 |
-
Stable tag: 1.4.
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
|
@@ -142,6 +142,10 @@ You sure can, just use the following snippet:
|
|
| 142 |
|
| 143 |
== Changelog ==
|
| 144 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 145 |
= 1.4.2 =
|
| 146 |
* 2014-02-03
|
| 147 |
* Fix - Link title options in the widget.
|
| 3 |
Donate link: http://woothemes.com/
|
| 4 |
Tags: features, widget, shortcode, template-tag, services
|
| 5 |
Requires at least: 3.4.2
|
| 6 |
+
Tested up to: 4.0
|
| 7 |
+
Stable tag: 1.4.3
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
| 142 |
|
| 143 |
== Changelog ==
|
| 144 |
|
| 145 |
+
= 1.4.3 =
|
| 146 |
+
* 2014.08.18
|
| 147 |
+
* Tweak - Made post type args filterable (props lkraav).
|
| 148 |
+
|
| 149 |
= 1.4.2 =
|
| 150 |
* 2014-02-03
|
| 151 |
* Fix - Link title options in the widget.
|
woothemes-features.php
CHANGED
|
@@ -4,7 +4,7 @@
|
|
| 4 |
* Plugin URI: http://woothemes.com/
|
| 5 |
* Description: Hi, I'm your feature showcase plugin for WordPress. Show off what features your company, product or service offers, using our shortcode, widget or template tag.
|
| 6 |
* Author: WooThemes
|
| 7 |
-
* Version: 1.4.
|
| 8 |
* Author URI: http://woothemes.com/
|
| 9 |
*
|
| 10 |
* @package WordPress
|
|
@@ -19,4 +19,4 @@ require_once( 'woothemes-features-template.php' );
|
|
| 19 |
require_once( 'classes/class-woothemes-widget-features.php' );
|
| 20 |
global $woothemes_features;
|
| 21 |
$woothemes_features = new Woothemes_Features( __FILE__ );
|
| 22 |
-
$woothemes_features->version = '1.4.
|
| 4 |
* Plugin URI: http://woothemes.com/
|
| 5 |
* Description: Hi, I'm your feature showcase plugin for WordPress. Show off what features your company, product or service offers, using our shortcode, widget or template tag.
|
| 6 |
* Author: WooThemes
|
| 7 |
+
* Version: 1.4.3
|
| 8 |
* Author URI: http://woothemes.com/
|
| 9 |
*
|
| 10 |
* @package WordPress
|
| 19 |
require_once( 'classes/class-woothemes-widget-features.php' );
|
| 20 |
global $woothemes_features;
|
| 21 |
$woothemes_features = new Woothemes_Features( __FILE__ );
|
| 22 |
+
$woothemes_features->version = '1.4.3';
|
