Changeset 2452341
- Timestamp:
- 01/08/2021 07:21:49 AM (5 years ago)
- Location:
- jackshare/trunk
- Files:
-
- 3 edited
-
inc/class-jackshare-functions.php (modified) (1 diff)
-
jackshare.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
jackshare/trunk/inc/class-jackshare-functions.php
r2451489 r2452341 108 108 109 109 // Get the post's title 110 $jshare_post_title = urlencode( $post->post_title);110 $jshare_post_title = urlencode( esc_attr($post->post_title) ); 111 111 112 112 // Get the post featured image 113 113 $jackshareThumbnail = wp_get_attachment_url( get_post_thumbnail_id() ); 114 114 115 $jackshare_desc = wp_kses( get_the_content(), array() );115 $jackshare_desc = esc_attr( wp_trim_words( get_the_content(), 40, '' ), array() ); 116 116 117 117 // Share this message -
jackshare/trunk/jackshare.php
r2451489 r2452341 5 5 * Plugin URI: https://wordpress.org/plugins/jackshare 6 6 * Description: Super simple Social media sharing buttons with minimal design and lightning fast performance. 7 * Version: 2.1. 97 * Version: 2.1.10 8 8 * License: GPL v3 9 9 * License URI: http://www.gnu.org/licenses/gpl-3.0.txt … … 22 22 //Plugin name and version 23 23 define( 'JACKSHARE_PLUGIN_NAME', 'Jackshare'); 24 define( 'JACKSHARE_PLUGIN_VERSION', 'v2.1. 9');24 define( 'JACKSHARE_PLUGIN_VERSION', 'v2.1.10'); 25 25 26 26 define( 'JACKSHARE_PLUGIN_FILE', __FILE__ ); -
jackshare/trunk/readme.txt
r2451489 r2452341 5 5 Requires at least: 4.0 6 6 Tested up to: 5.6 7 Stable tag: 2.1. 97 Stable tag: 2.1.10 8 8 License: GPL v3 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html
Note: See TracChangeset
for help on using the changeset viewer.