Shortcodes by Angie Makes - Version 1.87

Version Description

Download this release

Release Info

Developer cbaldelomar
Plugin Icon wp plugin Shortcodes by Angie Makes
Version 1.87
Comparing to
See all releases

Code changes from version 1.86 to 1.87

README.md CHANGED
@@ -66,6 +66,10 @@ Use the shortcode manager in the TinyMCE text editor
66
 
67
  ## Changelog ##
68
 
 
 
 
 
69
  ### Version 1.86
70
 
71
  * minified rslides js file
66
 
67
  ## Changelog ##
68
 
69
+ ### Version 1.87
70
+
71
+ * Added class name to paginate navigation
72
+
73
  ### Version 1.86
74
 
75
  * minified rslides js file
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' => __('Previous Page'),
19
- 'next_text' => __('Next Page'),
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' => '<span class="paginate-text prev-paginate-text">' . __('Previous Page') . '</span>',
19
+ 'next_text' => '<span class="paginate-text next-paginate-text">' . __('Next Page') . '</span>',
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.86 =
92
 
93
  * minified rslides js file
88
 
89
  == Changelog ==
90
 
91
+ = Version 1.87 =
92
+
93
+ * Added class name to paginate navigation
94
+
95
  = Version 1.86 =
96
 
97
  * minified rslides js file
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.86
9
  License: GPLv2 or later
10
  */
11
 
12
- define( 'WC_SHORTCODES_VERSION', '1.86' );
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.87
9
  License: GPLv2 or later
10
  */
11
 
12
+ define( 'WC_SHORTCODES_VERSION', '1.87' );
13
  define( 'WC_SHORTCODES_PREFIX', 'wc_shortcodes_' );
14
  define( '_WC_SHORTCODES_PREFIX', '_wc_shortcodes_' );
15
  define( 'WC_SHORTCODES_PLUGIN_URL', plugin_dir_url( __FILE__ ) );