Changeset 220659
- Timestamp:
- 03/22/2010 03:58:58 PM (16 years ago)
- Location:
- yet-another-featured-posts-plugin
- Files:
-
- 8 added
- 2 edited
-
tags/1.2 (added)
-
tags/1.2/img (added)
-
tags/1.2/img/loading.gif (added)
-
tags/1.2/img/stars.png (added)
-
tags/1.2/readme.txt (added)
-
tags/1.2/screenshot-1.jpg (added)
-
tags/1.2/screenshot-2.jpg (added)
-
tags/1.2/yafpp.php (added)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/yafpp.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
yet-another-featured-posts-plugin/trunk/readme.txt
r168101 r220659 5 5 Plugin URI: http://jonraasch.com/blog/yet-another-featured-posts-plugin 6 6 Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=4URDTZYUNPV3J&lc=US&item_name=Jon%20Raasch¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donate_LG%2egif%3aNonHosted 7 Tags: featured posts, featured, highlight, starred, star, highlight posts, interface, feature7 Tags: featured posts, featured, highlight, starred, star, highlight posts, feature, featured post list 8 8 Requires at least: 2.8.4 9 Tested up to: 2. 8.510 Stable tag: 1. 29 Tested up to: 2.9.2 10 Stable tag: 1.3 11 11 12 Yet Another Featured Posts Plugin provides an easy interface for featuring and unfeaturing posts. Click the "featured stars" for each post in WordPress' post listing.12 Yet Another Featured Posts Plugin provides an easy AJAX interface to feature posts, with thumbnails & other display options for featured posts. 13 13 14 14 == Description == 15 15 16 Yet Another Featured Posts Plugin (YAFPP) provides an easy interface to feature and unfeature posts in your WordPress blog. Simply check the 'featured stars' associated with each post in WordPress' post listing screen. The plugin will post this info immediately withAJAX.16 Yet Another Featured Posts Plugin (YAFPP) provides an easy interface to feature posts in your WordPress blog. Simply check the 'featured stars' associated with each post in WordPress' post listing screen to feature or unfeature a post. This info is posted immediately to your WordPress settings using AJAX. 17 17 18 YAFPP also provides a number of output options for developers - you can echo out or return an HTML formatted string of featured posts, return an array of featured post data or manipulate WordPress' The_Loop.18 This interface for featuring/unfeaturing posts is a big step up from other featured posts plugins, which make you enter a string of IDs. 19 19 20 Read the [complete documentation](http://dev.jonraasch.com/yafpp/docs "Read the complete documentation") 20 Additionally, YAFPP provides a number of output options for WP developers - you can echo out or return an HTML formatted string of featured posts, return an array of featured post data or manipulate WordPress' The_Loop. 21 22 Using these display options you can easily display a thumbnail with each featured post, or otherwise modify the list of featured posts according to your setup. 23 24 Not a developer? Beginners can also display thumbnails with their featured posts by installing [YAPB](http://wordpress.org/extend/plugins/yet-another-photoblog/ "Yet Another Photoblog"). YAFPP interfaces nicely with YAPB, and allows you to display YAPB thumbnails along with your normal featured posts output. 25 26 Please read the [complete documentation for YAFPP](http://dev.jonraasch.com/yafpp/docs "Read the complete documentation") 21 27 22 28 == Installation == … … 95 101 == Changelog == 96 102 103 = 1.3 = 104 * Fixes image path bug (thanks to Greg Boggs for his help here) 105 * Output method 'the_loop' now honors "max_posts" setting (thanks to Nicol Martini for this contribution) 106 97 107 = 1.2 = 98 108 * URL and descriptions bug fixed -
yet-another-featured-posts-plugin/trunk/yafpp.php
r168112 r220659 4 4 Plugin URI: http://jonraasch.com/blog/yet-another-featured-posts-plugin 5 5 Description: A plugin to manage and display a list of featured posts 6 Version: 1. 26 Version: 1.3 7 7 Author: Jon Raasch 8 8 Author URI: http://jonraasch.com/ … … 179 179 query_posts(array( 180 180 'post__in' => $featured_arr, 181 'posts_per_page' => $yafpp_opts['max_posts'] 181 182 )); 182 183 … … 303 304 // add css for post listings UI 304 305 function yafpp_css() { 305 $root = get_option('home'); 306 $yafpp_dir = $root . '/wp-content/plugins/yet-another-featured-posts-plugin'; 306 $script_path = substr( __FILE__, 0, -10); 307 308 $yafpp_dir = get_option('siteurl') . '/wp-content/plugins' . substr( $script_path, strrpos( $script_path, '/')) . '/'; 307 309 308 310 $out = <<<EOT
Note: See TracChangeset
for help on using the changeset viewer.