Changeset 2375253
- Timestamp:
- 09/04/2020 01:16:15 PM (6 years ago)
- Location:
- wp-favorite-posts/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
wp-favorite-posts.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-favorite-posts/trunk/readme.txt
r2374358 r2375253 5 5 wp-favorite-posts, reading list, post list, post lists, lists 6 6 Requires at least: 3.5 7 Tested up to: 4.4.28 Stable tag: 1.6. 77 Tested up to: 5.5.1 8 Stable tag: 1.6.8 9 9 10 10 Allows visitors to add favorite posts. This plugin use cookies for saving data so … … 52 52 53 53 == Changelog == 54 = 1.6.8 (2020-09-04) = 55 * Updated tested up to info. Tested with 5.5.1. 56 54 57 = 1.6.7 (2020-09-03) = 55 58 * Tested with 5.5.1 and fixed compatibility issues. -
wp-favorite-posts/trunk/wp-favorite-posts.php
r2374358 r2375253 4 4 Plugin URI: https://github.com/hberberoglu/wp-favorite-posts 5 5 Description: Allows users to add favorite posts. This plugin use cookies for saving data so unregistered users can favorite a post. Put <code><?php wpfp_link(); ?></code> where ever you want on a single post. Then create a page which includes that text : <code>[wp-favorite-posts]</code> That's it! 6 Version: 1.6. 76 Version: 1.6.8 7 7 Author: Huseyin Berberoglu 8 8 Author URI: https://github.com/hberberoglu … … 28 28 */ 29 29 30 define('WPFP_ VERSION', "1.6.6");30 define('WPFP_JS_VERSION', "1.6.8"); 31 31 define('WPFP_PATH', plugins_url() . '/wp-favorite-posts'); 32 32 define('WPFP_META_KEY', "wpfp_favorites"); … … 322 322 function wpfp_add_js_script() { 323 323 if (!wpfp_get_option('dont_load_js_file')) 324 wp_enqueue_script( "wp-favorite-posts", WPFP_PATH . "/script.js", array( 'jquery' ), WPFP_ VERSION );324 wp_enqueue_script( "wp-favorite-posts", WPFP_PATH . "/script.js", array( 'jquery' ), WPFP_JS_VERSION ); 325 325 } 326 326 add_action('wp_print_scripts', 'wpfp_add_js_script');
Note: See TracChangeset
for help on using the changeset viewer.