Changeset 646448
- Timestamp:
- 12/31/2012 05:41:44 PM (13 years ago)
- Location:
- wp-favorite-posts/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (8 diffs)
-
wp-favorite-posts.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-favorite-posts/trunk/readme.txt
r645912 r646448 6 6 Requires at least: 2.0.2 7 7 Tested up to: 3.5 8 Stable tag: 1.5. 7.18 Stable tag: 1.5.8 9 9 10 10 Allows visitors to add favorite posts. This plugin use cookies for saving data so … … 29 29 Rejected URIs". 30 30 31 See [more details about plugin](http://nxsn.com/projects/wp-favorite-posts/) 31 If you need support [create a topic on support forum](http://wordpress.org/support/plugin/wp-favorite-posts) 32 33 For thank me [go here](http://nxsn.com/projects/wp-favorite-posts/) or [make a donation](http://nxsn.com/donate/) 32 34 33 35 == Installation == … … 50 52 51 53 == Changelog == 54 = 1.5.8 (2012-12-31) = 55 * BUGFIX: fixed fake favorite possiblity bug. Thanks to Marian (http://nxsn.com/projects/wp-favorite-posts/comment-page-11/#comment-16505) 56 52 57 = 1.5.7 (2012-12-29) = 53 58 * Automatic show option added to settings screen. You can configure to show "add/remove favorite" link before or after post content. … … 79 84 * Show only published posts on most favorited posts widget 80 85 81 = 1.4.3 = 82 2010-04-13 86 = 1.4.3 (2010-04-13) = 83 87 * Admin can write html codes to label settings (on admin page) 84 88 * Added "wpfp_link_html" and "wpfp_remove_favorite_link" filters. 85 89 86 = 1.4.3 = 87 2010-04-09 90 = 1.4.3 (2010-04-09) = 88 91 * Fix: same remove link for all posts on index 89 92 * better wpfp.js: remove li which on favorites page. … … 139 142 [wpfp-link] to the post content. 140 143 141 = 1.1.6 (2009-03-05) =144 = 1.1.6 (2009-03-05) = 142 145 * Fixed ajax problem. 143 146 144 = 1.1.5 (2009-03-02) =147 = 1.1.5 (2009-03-02) = 145 148 * Added rel="nofollow" to links. 146 149 * Favorite posts title language problem solved. … … 155 158 * Added favorite statistic feature. 156 159 157 = 1.2 (2009-04-26) =160 = 1.2 (2009-04-26) = 158 161 * Added database integration. 159 162 - If a user logged in then favorites data will save to database instead of cookies. … … 161 164 * Added "only registered users can favorite" option. 162 165 163 = 1.1.7 (2009-03-10) =166 = 1.1.7 (2009-03-10) = 164 167 * Fixed duplicate loading image problem 165 168 * Added [wpfp-link] feature; … … 167 170 [wpfp-link] to the post content. 168 171 169 = 1.1.6 (2009-03-05) =172 = 1.1.6 (2009-03-05) = 170 173 * Fixed ajax problem. 171 174 172 = 1.1.5 (2009-03-02) =175 = 1.1.5 (2009-03-02) = 173 176 * Added rel="nofollow" to links. 174 177 * Favorite posts title language problem solved. -
wp-favorite-posts/trunk/wp-favorite-posts.php
r645912 r646448 4 4 Plugin URI: http://nxsn.com/my-projects/wp-favorite-posts-plugin/ 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.5. 7.16 Version: 1.5.8 7 7 Author: Huseyin Berberoglu 8 8 Author URI: http://nxsn.com 9 9 10 10 */ 11 12 11 13 12 /* … … 71 70 function wpfp_do_add_to_list($post_id) { 72 71 if (wpfp_check_favorited($post_id)) 73 return true;72 return false; 74 73 if (is_user_logged_in()) { 75 74 return wpfp_add_to_usermeta($post_id);
Note: See TracChangeset
for help on using the changeset viewer.