Changeset 159748
- Timestamp:
- 10/01/2009 05:40:54 PM (16 years ago)
- Location:
- yet-another-featured-posts-plugin
- Files:
-
- 2 edited
- 8 copied
-
tags/1.0/readme.txt (modified) (1 diff)
-
tags/1.1 (copied) (copied from yet-another-featured-posts-plugin/trunk)
-
tags/1.1/img (copied) (copied from yet-another-featured-posts-plugin/trunk/img)
-
tags/1.1/readme.txt (copied) (copied from yet-another-featured-posts-plugin/trunk/readme.txt) (5 diffs)
-
tags/1.1/screenshot-1.jpg (copied) (copied from yet-another-featured-posts-plugin/tags/1.0/screenshot-1.jpg)
-
tags/1.1/screenshot-2.jpg (copied) (copied from yet-another-featured-posts-plugin/tags/1.0/screenshot-2.jpg)
-
tags/1.1/yafpp.php (copied) (copied from yet-another-featured-posts-plugin/trunk/yafpp.php)
-
trunk/readme.txt (modified) (5 diffs)
-
trunk/screenshot-1.jpg (copied) (copied from yet-another-featured-posts-plugin/tags/1.0/screenshot-1.jpg)
-
trunk/screenshot-2.jpg (copied) (copied from yet-another-featured-posts-plugin/tags/1.0/screenshot-2.jpg)
Legend:
- Unmodified
- Added
- Removed
-
yet-another-featured-posts-plugin/tags/1.0/readme.txt
r159688 r159748 30 30 3. Select featured posts by clicking the 'featured stars' within the post listing in 'Posts > Edit' 31 31 32 4. Place `<?php get_ post_listing(); ?>` wherever you want a list of featured posts in your templates32 4. Place `<?php get_featured_posts(); ?>` wherever you want a list of featured posts in your templates 33 33 34 34 = Output options = 35 35 36 For more advanced users there are a number of output options. Simply pass an option array: `<?php get_ post_listing(array( 'method' => 'return' ); ?>`. In this example `<?php get_post_listing(); ?>` would return the formatted string of data instead of echoing it.36 For more advanced users there are a number of output options. Simply pass an option array: `<?php get_featured_posts(array( 'method' => 'return' ); ?>`. In this example `<?php get_featured_posts(); ?>` would return the formatted string of data instead of echoing it. 37 37 38 38 Output options include: -
yet-another-featured-posts-plugin/tags/1.1/readme.txt
r159688 r159748 8 8 Requires at least: 2.8.4 9 9 Tested up to: 2.8.4 10 Stable tag: 1. 010 Stable tag: 1.1 11 11 12 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. … … 18 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. 19 19 20 Copyright 2009 Jon Raasch - Released under the FreeBSD License - [License info](http://dev.jonraasch.com/yafpp/docs#licensing)20 Read the [complete documentation](http://dev.jonraasch.com/yafpp/docs "Read the complete documentation") 21 21 22 22 == Installation == … … 30 30 3. Select featured posts by clicking the 'featured stars' within the post listing in 'Posts > Edit' 31 31 32 4. Place `<?php get_ post_listing(); ?>` wherever you want a list of featured posts in your templates32 4. Place `<?php get_featured_posts(); ?>` wherever you want a list of featured posts in your templates 33 33 34 34 = Output options = 35 35 36 For more advanced users there are a number of output options. Simply pass an option array: `<?php get_ post_listing(array( 'method' => 'return' ); ?>`. In this example `<?php get_post_listing(); ?>` would return the formatted string of data instead of echoing it.36 For more advanced users there are a number of output options. Simply pass an option array: `<?php get_featured_posts(array( 'method' => 'return' ); ?>`. In this example `<?php get_featured_posts(); ?>` would return the formatted string of data instead of echoing it. 37 37 38 38 Output options include: … … 44 44 45 45 See the FAQs for more info on output options. 46 47 Read the [complete documentation](http://dev.jonraasch.com/yafpp/docs "Read the complete documentation") 46 48 47 49 == Frequently Asked Questions == … … 95 97 = 1.0 = 96 98 * First major release of YAFPP 99 100 == License == 101 102 Copyright 2009 Jon Raasch - Released under the FreeBSD License - [License details](http://dev.jonraasch.com/yafpp/docs#licensing) -
yet-another-featured-posts-plugin/trunk/readme.txt
r159688 r159748 8 8 Requires at least: 2.8.4 9 9 Tested up to: 2.8.4 10 Stable tag: 1. 010 Stable tag: 1.1 11 11 12 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. … … 18 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. 19 19 20 Copyright 2009 Jon Raasch - Released under the FreeBSD License - [License info](http://dev.jonraasch.com/yafpp/docs#licensing)20 Read the [complete documentation](http://dev.jonraasch.com/yafpp/docs "Read the complete documentation") 21 21 22 22 == Installation == … … 30 30 3. Select featured posts by clicking the 'featured stars' within the post listing in 'Posts > Edit' 31 31 32 4. Place `<?php get_ post_listing(); ?>` wherever you want a list of featured posts in your templates32 4. Place `<?php get_featured_posts(); ?>` wherever you want a list of featured posts in your templates 33 33 34 34 = Output options = 35 35 36 For more advanced users there are a number of output options. Simply pass an option array: `<?php get_ post_listing(array( 'method' => 'return' ); ?>`. In this example `<?php get_post_listing(); ?>` would return the formatted string of data instead of echoing it.36 For more advanced users there are a number of output options. Simply pass an option array: `<?php get_featured_posts(array( 'method' => 'return' ); ?>`. In this example `<?php get_featured_posts(); ?>` would return the formatted string of data instead of echoing it. 37 37 38 38 Output options include: … … 44 44 45 45 See the FAQs for more info on output options. 46 47 Read the [complete documentation](http://dev.jonraasch.com/yafpp/docs "Read the complete documentation") 46 48 47 49 == Frequently Asked Questions == … … 95 97 = 1.0 = 96 98 * First major release of YAFPP 99 100 == License == 101 102 Copyright 2009 Jon Raasch - Released under the FreeBSD License - [License details](http://dev.jonraasch.com/yafpp/docs#licensing)
Note: See TracChangeset
for help on using the changeset viewer.