Version Description
- Added Author support to post type
Download this release
Release Info
Developer | metaphorcreations |
Plugin | Ditty News Ticker |
Version | 1.4.9 |
Comparing to | |
See all releases |
Code changes from version 1.4.8 to 1.4.9
- ditty-news-ticker.php +3 -3
- includes/post-types.php +1 -1
- readme.txt +5 -2
ditty-news-ticker.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Ditty News Ticker
|
4 |
Plugin URI: http://dittynewsticker.com/
|
5 |
Description: Ditty News Ticker is a multi-functional data display plugin
|
6 |
-
Version: 1.4.
|
7 |
Author: Metaphor Creations
|
8 |
Author URI: http://www.metaphorcreations.com
|
9 |
License: GPL2
|
@@ -29,10 +29,10 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
29 |
|
30 |
|
31 |
/* --------------------------------------------------------- */
|
32 |
-
/* !Define constants - 1.4.
|
33 |
/* --------------------------------------------------------- */
|
34 |
|
35 |
-
define ( 'MTPHR_DNT_VERSION', '1.4.
|
36 |
define ( 'MTPHR_DNT_DIR', plugin_dir_path(__FILE__) );
|
37 |
define ( 'MTPHR_DNT_URL', plugins_url().'/ditty-news-ticker' );
|
38 |
|
3 |
Plugin Name: Ditty News Ticker
|
4 |
Plugin URI: http://dittynewsticker.com/
|
5 |
Description: Ditty News Ticker is a multi-functional data display plugin
|
6 |
+
Version: 1.4.9
|
7 |
Author: Metaphor Creations
|
8 |
Author URI: http://www.metaphorcreations.com
|
9 |
License: GPL2
|
29 |
|
30 |
|
31 |
/* --------------------------------------------------------- */
|
32 |
+
/* !Define constants - 1.4.9 */
|
33 |
/* --------------------------------------------------------- */
|
34 |
|
35 |
+
define ( 'MTPHR_DNT_VERSION', '1.4.9' );
|
36 |
define ( 'MTPHR_DNT_DIR', plugin_dir_path(__FILE__) );
|
37 |
define ( 'MTPHR_DNT_URL', plugins_url().'/ditty-news-ticker' );
|
38 |
|
includes/post-types.php
CHANGED
@@ -41,7 +41,7 @@ function mtphr_dnt_posttype() {
|
|
41 |
'show_in_menu' => true,
|
42 |
'query_var' => true,
|
43 |
'rewrite' => true,
|
44 |
-
'supports' => array( 'title' ),
|
45 |
'rewrite' => array( 'slug' => __( 'ticker', 'ditty-news-ticker' ) ),
|
46 |
'show_in_nav_menus' => true
|
47 |
);
|
41 |
'show_in_menu' => true,
|
42 |
'query_var' => true,
|
43 |
'rewrite' => true,
|
44 |
+
'supports' => array( 'title', 'author' ),
|
45 |
'rewrite' => array( 'slug' => __( 'ticker', 'ditty-news-ticker' ) ),
|
46 |
'show_in_nav_menus' => true
|
47 |
);
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: metaphorcreations
|
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=FUZKZGAJSBAE6
|
4 |
Tags: ticker, news, news ticker, rotator, data rotator, lists, data
|
5 |
Requires at least: 3.2
|
6 |
-
Tested up to: 3.9
|
7 |
Stable tag: /trunk/
|
8 |
License: GPL2
|
9 |
|
@@ -54,6 +54,9 @@ Each individual Ticker post has multiple settings to customize.
|
|
54 |
|
55 |
== Changelog ==
|
56 |
|
|
|
|
|
|
|
57 |
= 1.4.8 =
|
58 |
* Removed "data-icon" styles in icon font stylesheet
|
59 |
* Converted icon font characters to PUA
|
@@ -239,4 +242,4 @@ Each individual Ticker post has multiple settings to customize.
|
|
239 |
|
240 |
== Upgrade Notice ==
|
241 |
|
242 |
-
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=FUZKZGAJSBAE6
|
4 |
Tags: ticker, news, news ticker, rotator, data rotator, lists, data
|
5 |
Requires at least: 3.2
|
6 |
+
Tested up to: 3.9.2
|
7 |
Stable tag: /trunk/
|
8 |
License: GPL2
|
9 |
|
54 |
|
55 |
== Changelog ==
|
56 |
|
57 |
+
= 1.4.9 =
|
58 |
+
* Added Author support to post type
|
59 |
+
|
60 |
= 1.4.8 =
|
61 |
* Removed "data-icon" styles in icon font stylesheet
|
62 |
* Converted icon font characters to PUA
|
242 |
|
243 |
== Upgrade Notice ==
|
244 |
|
245 |
+
Added Author support to post type.
|