Path: blob/master/spec/fixtures/finders/plugin_version/readme/advanced-most-recent-posts-mod.txt
486 views
=== Advanced Most Recent Posts Mod ===1Contributors: yakuphan, trepmal2Tags: Advanced, recent, recent posts, most recent, category posts, thumbnail3Donate link: http://kaileylampert.com/donate/4Requires at least: 2.85Tested up to: 3.2.16Stable tag: trunk78Based off the Advanced Most Recent Posts plugin by Yakup GÖVLER. Display most recent posts from selected categories or current category or all categories with thumbnail images (optional).910== Description ==11Advanced Most Recent Posts Widget displays your recent posts with thumbnail images (optional). It gets posts from selected categories or current category or all categories. When your visitors are at home, it gets posts from all posts or selected category. If you set 'Get posts from current category', when visitors see single post, widget lists posts in the same category of single post or when visitors click a category link, it gets posts from current category.1213Check out a brand new plugin inspired by this one: [Mini Loops](http://wordpress.org/extend/plugins/mini-loops/)1415I'm bad at support (not intentionally). If you have questions: check the forums, then check [my blog post's comment thread](http://trepmal.com/plugins/advanced-most-recent-posts-mod/#comments). If that doesn't work, post to the forums (there are awesome volunteers out there!) and get my attention by pinging me on twitter [@trepmal](http://twitter.com/trepmal).1617== Installation ==1819= Installation =201. Make sure you are running WordPress version 2.8 or better. It won't work with older versions.212. Download the zip file and extract the contents.223. Upload the 'advanced-most-recent-posts' folder (wp-content/plugins/).234. Activate the plugin through the 'plugins' page in WP.245. See 'Appearance'->'Widgets' to place it on your sidebar. Set the settings.2526== Frequently Asked Questions ==2728= How can I set it to get posts from current category? =29Select checkbox on widget's settings called 'Get posts from current category'.3031= I want to display only the posts in two categories. =32You have to write their category's ids -separated with a comma- to 'Categories' textbox.3334= I don't use Widgets. How can use this widget? =3536template tag: `yg_recentposts( $args )`37shortcode: `[amrp]` with args38Original author's [website](http://www.yakupgovler.com/?p=1033).3940= .... Image alignment .... =4142If you need serious customization, please go learn CSS. I will not provide extensive CSS support. (Sorry - there are just far too many variations, and I do all this in my spare time)4344The most frequest request I get has to do with aligning the image to the right or left. To get started with customization, create a file called amrp-styles.php (really, any name will do) and upload it to `wp-content/mu-plugins` (you may need to create this directory).4546In that file, paste the following47`<?php48/*49AMRP Styles50*/5152add_action('wp_head', 'amrp_styles');53function amrp_styles() {54?>55<style type="text/css">56.advanced-recent-posts {57/* remove bullet points */58list-style-type: none;59}60.advanced-recent-posts li {61}62.advanced-recent-posts li a {63}64.advanced-recent-posts li img {65float: right; /* change to left if you'd prefer */66margin: 3px;67}68</style>69<?php70}`7172Of course, if you have the skills, feel free to relocate that CSS.7374== Screenshots ==75761. Widget's screenshot in 'Appearance'->'Widgets'772. (original version) Widget's screenshot in 'Appearance'->'Widgets'7879== Options ==8081Widget's options allow you to change your recent posts list displaying.8283= Title: =84Your recent posts widget's title on your sidebar.8586= Title Link: =87The page the title should link to.8889= Hide Post Title: =90Check to hide post title in output. useful for thumbnail-only displays9192= Separator: =93The character to use to separate the title from the excerpt.9495= After Excerpt: =96What should appear after the excerpt9798= After Excerpt Link: =99should the 'after excerpt' text link to the post? useful if 'after excerpt' read like "read more..."100101= Show: =102The post type to be displayed.103104= Number of posts to show: =105How many posts to display106107= Excerpt length (letters) =108You know that109110= Thumbnail Custom Field Name =111If you want to display the thumbnail of your posts via a custom field, write its name.112113= Height - Width =114Images size.115116= Get first image of post =117If you don't want to use custom field, plugin will get first image from your post content.118119= Get first attached image of post =120Plugin gets first attached image of post.121122= Default image =123If post has no image, plugin display this image. Ex: http://www.yakupgovler.com/default-image.png124125126Notice: If you use three options, plugin uses custom field image firstly. If the post has no custom field, it gets first image from content. At last it gets first attached image. I suggest not to use "Get first image of post" for performance. It queries much more.127128= Show Author =129If checked, shows author next to title130131= Show Post Timestamp =132If checked, shows post timestamp133134= Time format =135The format to be used when displaying the timestamp136137= Put time =138A placement option for the post timestamp139140= Categories =141Plugin gets posts in these categories. (Category IDs, separated by commas.)142143= Get posts from current category: =144Posts will be get from current category (single post's category or current category).145146147== Upgrade Notice ==148149= 1.6.5 =150bugfix: 'after excerpt' now appears as it should even if the link option is unchecked151Have you tried [Mini Loops](http://wordpress.org/extend/plugins/mini-loops/)?152153= 1.6.4 =154moved image outside of title so it won't disappear if 'hide title' is checked155undefined variable bug fix156157= 1.6.3 =158fixed after-excerpt-link bug159160= 1.6 =161Future updates will assume you have at least this release.162163== Changelog ==164165= 1.6.5.2 =166* it title is empty, show nothing not default167168= 1.6.5.1 =169* updated POT file170171= 1.6.5 =172* bugfix: 'after excerpt' now appears as it should even if the link option is unchecked173174= 1.6.4 =175* moved image outside of title so it won't disappear if 'hide title' is checked176* undefined variable bug fix177178= 1.6.3 =179* fixed after-excerpt-link bug180181= 1.6.2 =182* shortcode fixes for 'limit' (really should be 'shownum' - now both work) and height/width183184= 1.6.1 =185* author fix186187= 1.6 =188* remove 20 post limit189* option to display posts in reverse order190* excerpt by *word* count option191* post-offset option192193= 1.5 =194* *dev release*195* option to hide post title196* option to specify the '...' after excerpt197198= 1.4.1 =199* fixed double echo issue200201= 1.4 =202* added support for shortcodes, show author option and post-type choice203204= 1.3 =205* fixed timestamp bug, added timestamp placement option206207= 1.2 =208* added support for setting a title link, choosing a title/content separator, and displaying post timestamp209210= 1.1 =211* (original plugin) Fixed a bug. If you don't set image dimensions, it displays thumbnail wrong.212213= Version 1.0 =214* Initial release version.215216217