Shortcodes by Angie Makes - Version 3.20

Version Description

Download this release

Release Info

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

Code changes from version 3.19 to 3.20

README.md CHANGED
@@ -106,6 +106,10 @@ See our help article on [how to manually upload a plugin](http://knowledgebase.a
106
 
107
  ## Changelog ##
108
 
 
 
 
 
109
  ### Version 3.19 ###
110
 
111
  * updated text domain
106
 
107
  ## Changelog ##
108
 
109
+ ### Version 3.20 ###
110
+
111
+ * Removed extra closing tag
112
+
113
  ### Version 3.19 ###
114
 
115
  * updated text domain
public/class-vars.php CHANGED
@@ -8,7 +8,7 @@ class WPC_Shortcodes_Vars {
8
  *
9
  * @var string
10
  */
11
- const VERSION = '3.18';
12
  const DB_VERSION = '1.0';
13
 
14
  /**
8
  *
9
  * @var string
10
  */
11
+ const VERSION = '3.20';
12
  const DB_VERSION = '1.0';
13
 
14
  /**
public/templates/slider1/content.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php $classes[] = 'wc-shortcodes-post-slide'; ?>
2
  <?php $image_style = ''; ?>
3
  <?php if ( has_post_thumbnail() && ! post_password_required() ) : ?>
4
- <?php $image_style = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), $display['size'] ); ?></a>
5
  <?php $image_style = 'background-image:url(\''.$image_style[0].'\');'; ?>
6
  <?php endif; ?>
7
  <div id="post-<?php the_ID(); ?>" <?php post_class( $classes ); ?> style="<?php echo $image_style; ?>">
1
  <?php $classes[] = 'wc-shortcodes-post-slide'; ?>
2
  <?php $image_style = ''; ?>
3
  <?php if ( has_post_thumbnail() && ! post_password_required() ) : ?>
4
+ <?php $image_style = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), $display['size'] ); ?>
5
  <?php $image_style = 'background-image:url(\''.$image_style[0].'\');'; ?>
6
  <?php endif; ?>
7
  <div id="post-<?php the_ID(); ?>" <?php post_class( $classes ); ?> style="<?php echo $image_style; ?>">
public/templates/slider2/content.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php $classes[] = 'wc-shortcodes-post-slide'; ?>
2
  <?php $image_style = ''; ?>
3
  <?php if ( has_post_thumbnail() && ! post_password_required() ) : ?>
4
- <?php $image_style = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), $display['size'] ); ?></a>
5
  <?php $image_style = 'background-image:url(\''.$image_style[0].'\');'; ?>
6
  <?php endif; ?>
7
  <div id="post-<?php the_ID(); ?>" <?php post_class( $classes ); ?> style="<?php echo $image_style; ?>">
1
  <?php $classes[] = 'wc-shortcodes-post-slide'; ?>
2
  <?php $image_style = ''; ?>
3
  <?php if ( has_post_thumbnail() && ! post_password_required() ) : ?>
4
+ <?php $image_style = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), $display['size'] ); ?>
5
  <?php $image_style = 'background-image:url(\''.$image_style[0].'\');'; ?>
6
  <?php endif; ?>
7
  <div id="post-<?php the_ID(); ?>" <?php post_class( $classes ); ?> style="<?php echo $image_style; ?>">
readme.txt CHANGED
@@ -113,6 +113,10 @@ See our help article on [how to manually upload a plugin](http://knowledgebase.a
113
 
114
  == Changelog ==
115
 
 
 
 
 
116
  = Version 3.19 =
117
 
118
  * updated text domain
113
 
114
  == Changelog ==
115
 
116
+ = Version 3.20 =
117
+
118
+ * Removed extra closing tag
119
+
120
  = Version 3.19 =
121
 
122
  * updated text domain
wc-shortcodes.php CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://angiemakes.com/feminine-wordpress-blog-themes-women/
5
  Description: A plugin that adds a useful family of shortcodes to your WordPress theme.
6
  Author: Chris Baldelomar
7
  Author URI: http://angiemakes.com/
8
- Version: 3.19
9
  License: GPLv2 or later
10
  */
11
 
5
  Description: A plugin that adds a useful family of shortcodes to your WordPress theme.
6
  Author: Chris Baldelomar
7
  Author URI: http://angiemakes.com/
8
+ Version: 3.20
9
  License: GPLv2 or later
10
  */
11