Changeset 2664780
- Timestamp:
- 01/25/2022 05:15:12 PM (4 years ago)
- Location:
- recommend
- Files:
-
- 15 added
- 2 edited
- 2 moved
-
README.txt (added)
-
format (added)
-
tags/0.6.1 (added)
-
tags/0.6.1/README.md (added)
-
tags/0.6.1/README.txt (added)
-
tags/0.6.1/assets (added)
-
tags/0.6.1/assets/css (added)
-
tags/0.6.1/assets/css/wp-recommend.css (moved) (moved from recommend/trunk/assets/css/wp-recommend.css)
-
tags/0.6.1/assets/js (added)
-
tags/0.6.1/assets/js/like-action.js (added)
-
tags/0.6.1/changelog.txt (moved) (moved from recommend/trunk/changelog.txt)
-
tags/0.6.1/inc (added)
-
tags/0.6.1/inc/admin.php (added)
-
tags/0.6.1/inc/rest-api.php (added)
-
tags/0.6.1/recommend.php (added)
-
tags/0.6.1/uninstall.php (added)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/assets/css/recommend.css (added)
-
trunk/recommend.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
recommend/trunk/README.txt
r2593404 r2664780 4 4 Donate link: https://paypal.me/mattlitzinger 5 5 Requires at least: 4.7 6 Tested up to: 5. 86 Tested up to: 5.9 7 7 Requires PHP: 7.0 8 8 Stable tag: 0.6.1 … … 43 43 44 44 == Changelog == 45 Fixed issue w/ disabled admin field 45 46 = 0.6.2 = 47 *Release Date: January 25rd, 2022* 48 49 * Updated to support WordPress 5.9 release 46 50 47 51 = 0.6.1 = -
recommend/trunk/recommend.php
r2542127 r2664780 3 3 Plugin Name: Recommend 4 4 Description: Recommend allows you to add a like user action to your content. Unlike social sharing or commenting, the like action is simple and intuitive. The like count can then be used to return more relevant search results or a collection of most liked posts. 5 Version: 0.6. 15 Version: 0.6.2 6 6 Author: Matt Litzinger 7 Author URI: http:// mlitzinger.com7 Author URI: http://litzdigital.com 8 8 License: GPL2 9 9 */ … … 35 35 $options = get_option('wp_recommend_settings'); 36 36 if($options['remove_css'] != 1){ 37 wp_register_style('wp-recommend-css', plugin_dir_url(__FILE__) . 'assets/css/ wp-recommend.css');37 wp_register_style('wp-recommend-css', plugin_dir_url(__FILE__) . 'assets/css/recommend.css'); 38 38 wp_enqueue_style('wp-recommend-css'); 39 39 }
Note: See TracChangeset
for help on using the changeset viewer.