Skip to content

Commit

Permalink
prep 2.9.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
billerickson committed Sep 23, 2017
1 parent f223b07 commit f2f512a
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 9 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,13 @@ All notable changes to this project will be documented in this file, formatted v

### [2.9.0]
#### Added
* New parameter `exclude` for excluding specific post IDs
* New parameter `category_id` for specifying category by ID (note: only accepts a single ID)
* New parameter `exclude` for excluding specific post IDs, see #154
* New parameter `category_id` for specifying category by ID (note: only accepts a single ID), see #156
* New parameter `include_date_modified` for displaying the date the post was last updated, see #150

#### Fixed
* Shortcode title now appears above the wrapper (ul/ol/div), fixing invalid markup, see #165
* Limit visibility to readable posts

### [2.8.0]
#### Added
Expand Down
11 changes: 8 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
**Donate link:** https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MQKRBRFVRUV8C
**Tags:** shortcode, pages, posts, page, query, display, list
**Requires at least:** 3.0
**Tested up to:** 4.6.0
**Stable tag:** 2.7.0
**Tested up to:** 4.8
**Stable tag:** 2.9.0

Display a listing of posts using the [display-posts] shortcode

Expand Down Expand Up @@ -39,6 +39,11 @@ Specify the category slug, or comma separated list of category slugs.
Default: empty
Example: [display-posts category="fishing,hiking"]

**category_id**
Specify the category ID
Default: empty
Example: [display-posts category_id="123"]

**category_display**
Specify 'true' to display the categories the current post is in. Specify a taxonomy slug (e.g., 'post_tag') to list a different taxonomy.
Default: empty
Expand Down Expand Up @@ -136,7 +141,7 @@ Example: [display-posts image_size="thumbnail"]

**include_author**
Specify whether or not to include the post's author name.
Default: false
Default: false
Example: [display-posts include_author="true"]

**include_content**
Expand Down
4 changes: 2 additions & 2 deletions display-posts-shortcode.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: Display Posts Shortcode
* Plugin URI: http://www.billerickson.net/shortcode-to-display-posts/
* Description: Display a listing of posts using the [display-posts] shortcode
* Version: 2.8.1
* Version: 2.9.0
* Author: Bill Erickson
* Author URI: http://www.billerickson.net
*
Expand All @@ -15,7 +15,7 @@
* even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* @package Display Posts
* @version 2.8.0
* @version 2.9.0
* @author Bill Erickson <[email protected]>
* @copyright Copyright (c) 2011, Bill Erickson
* @link http://www.billerickson.net/shortcode-to-display-posts/
Expand Down
11 changes: 9 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ Contributors: billerickson
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MQKRBRFVRUV8C
Tags: shortcode, pages, posts, page, query, display, list
Requires at least: 3.0
Tested up to: 4.7
Stable tag: 2.8.0
Tested up to: 4.8
Stable tag: 2.9.0

Display a listing of posts using the [display-posts] shortcode

Expand All @@ -30,6 +30,13 @@ Add the shortcode in a post or page, and use the arguments to query based on tag

== Changelog ==

**Version 2.9.0**
* New parameter `exclude` for excluding specific post IDs, see [#154](https://github.com/billerickson/display-posts-shortcode/issues/154)
* New parameter `category_id` for specifying category by ID (note: only accepts a single ID), see [#156](https://github.com/billerickson/display-posts-shortcode/issues/156)
* New parameter `include_date_modified` for displaying the date the post was last updated, see [#150](https://github.com/billerickson/display-posts-shortcode/issues/150)
* Shortcode title now appears above the wrapper (ul/ol/div), fixing invalid markup, see [#165](https://github.com/billerickson/display-posts-shortcode/issues/165)
* Limit visibility to readable posts

**Version 2.8.0**
* Added include_link="false" to remove link from post title and image, see [#137](https://github.com/billerickson/display-posts-shortcode/pull/137)
* Fixed category display when using multiple post types, see [#143](https://github.com/billerickson/display-posts-shortcode/issues/143)
Expand Down

0 comments on commit f2f512a

Please sign in to comment.