Version Description
Download this release
Release Info
Developer | cbaldelomar |
Plugin | Shortcodes by Angie Makes |
Version | 1.89 |
Comparing to | |
See all releases |
Code changes from version 1.88 to 1.89
- README.md +4 -0
- includes/templates/nav-pagination.php +2 -2
- readme.txt +4 -0
- wc-shortcodes.php +2 -2
README.md
CHANGED
@@ -66,6 +66,10 @@ Use the shortcode manager in the TinyMCE text editor
|
|
66 |
|
67 |
## Changelog ##
|
68 |
|
|
|
|
|
|
|
|
|
69 |
### Version 1.88
|
70 |
|
71 |
* updated share button shortcode
|
66 |
|
67 |
## Changelog ##
|
68 |
|
69 |
+
### Version 1.89
|
70 |
+
|
71 |
+
* removed paginate text span element
|
72 |
+
|
73 |
### Version 1.88
|
74 |
|
75 |
* updated share button shortcode
|
includes/templates/nav-pagination.php
CHANGED
@@ -15,8 +15,8 @@ if ( $wc_shortcodes_posts_query->max_num_pages < 2 )
|
|
15 |
'current' => max( 1, $wc_shortcodes_posts_query->get('paged') ),
|
16 |
'show_all' => false,
|
17 |
'prev_next' => true,
|
18 |
-
'prev_text' =>
|
19 |
-
'next_text' =>
|
20 |
'end_size' => 2,
|
21 |
'mid_size' => 2,
|
22 |
'type' => 'plain',
|
15 |
'current' => max( 1, $wc_shortcodes_posts_query->get('paged') ),
|
16 |
'show_all' => false,
|
17 |
'prev_next' => true,
|
18 |
+
'prev_text' => __('Previous Page'),
|
19 |
+
'next_text' => __('Next Page'),
|
20 |
'end_size' => 2,
|
21 |
'mid_size' => 2,
|
22 |
'type' => 'plain',
|
readme.txt
CHANGED
@@ -88,6 +88,10 @@ Use the shortcode manager in the TinyMCE text editor
|
|
88 |
|
89 |
== Changelog ==
|
90 |
|
|
|
|
|
|
|
|
|
91 |
= Version 1.88 =
|
92 |
|
93 |
* updated share button shortcode
|
88 |
|
89 |
== Changelog ==
|
90 |
|
91 |
+
= Version 1.89 =
|
92 |
+
|
93 |
+
* removed paginate text span element
|
94 |
+
|
95 |
= Version 1.88 =
|
96 |
|
97 |
* updated share button shortcode
|
wc-shortcodes.php
CHANGED
@@ -5,11 +5,11 @@ Plugin URI: http://webplantmedia.com/starter-themes/wordpresscanvas/features/sho
|
|
5 |
Description: A family of shortcodes to enhance site functionality.
|
6 |
Author: Chris Baldelomar
|
7 |
Author URI: http://webplantmedia.com/
|
8 |
-
Version: 1.
|
9 |
License: GPLv2 or later
|
10 |
*/
|
11 |
|
12 |
-
define( 'WC_SHORTCODES_VERSION', '1.
|
13 |
define( 'WC_SHORTCODES_PREFIX', 'wc_shortcodes_' );
|
14 |
define( '_WC_SHORTCODES_PREFIX', '_wc_shortcodes_' );
|
15 |
define( 'WC_SHORTCODES_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
|
5 |
Description: A family of shortcodes to enhance site functionality.
|
6 |
Author: Chris Baldelomar
|
7 |
Author URI: http://webplantmedia.com/
|
8 |
+
Version: 1.89
|
9 |
License: GPLv2 or later
|
10 |
*/
|
11 |
|
12 |
+
define( 'WC_SHORTCODES_VERSION', '1.89' );
|
13 |
define( 'WC_SHORTCODES_PREFIX', 'wc_shortcodes_' );
|
14 |
define( '_WC_SHORTCODES_PREFIX', '_wc_shortcodes_' );
|
15 |
define( 'WC_SHORTCODES_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
|