Posts in Page - Version 1.3.1

Version Description

  • File header update / spelling fixes in readme.txt
Download this release

Release Info

Developer sewmyheadon
Plugin Icon 128x128 Posts in Page
Version 1.3.1
Comparing to
See all releases

Code changes from version 1.3.0 to 1.3.1

Files changed (2) hide show
  1. posts_in_page.php +1 -1
  2. readme.txt +8 -5
posts_in_page.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Posts in Page
4
  * Plugin URI: https://ivycat.com/wordpress/wordpress-plugins/posts-in-page/
5
  * Description: Easily add one or more posts to any page using simple shortcodes. Supports categories, tags, custom post types, custom taxonomies, and more.
6
- * Version: 1.3.0
7
  * Author: IvyCat, Inc.
8
  * Author URI: https://ivycat.com
9
  * License: GNU General Public License v2.0
3
  * Plugin Name: Posts in Page
4
  * Plugin URI: https://ivycat.com/wordpress/wordpress-plugins/posts-in-page/
5
  * Description: Easily add one or more posts to any page using simple shortcodes. Supports categories, tags, custom post types, custom taxonomies, and more.
6
+ * Version: 1.3.1
7
  * Author: IvyCat, Inc.
8
  * Author URI: https://ivycat.com
9
  * License: GNU General Public License v2.0
readme.txt CHANGED
@@ -1,9 +1,9 @@
1
  === Posts in Page ===
2
  Contributors: ivycat, sewmyheadon, anvilzephyr, jasonm4563, pjackson1972
3
  Tags: shortcode, pages, posts, custom post types, taxonomy, terms
4
- Requires at least: 3.0
5
- Tested up to: 4.0
6
- Stable tag: 1.3.0
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -47,7 +47,7 @@ To 'pull' posts into a page, you can either:
47
  * `[ic_add_posts showposts='5']` - limit number of posts (or override default setting)
48
  * `[ic_add_posts orderby='title' order='ASC']` - orderby title - supports all WP orderby variables. Order is optional, WP default is 'DESC'.
49
  * `[ic_add_posts category='category-slug']` - Show posts within a specific category. Uses slugs, can have multiple but separate by commas. category-1,category2, etc (no spaces.)
50
- * `[ic_add_posts exclude_category='category-slug']` - Exclude posts within specific category. Uses slugs, can have multiple slugs seperated by commas. category-1,category2, etc (no spaces.)
51
  * `[ic_add_posts tag='tag-slug']` - Show posts using a specific tag. Like categories, it uses slugs, and can accommodate multiple tags separate by commas. tag-1,tag-2, etc (no spaces.)
52
  * `[ic_add_posts tax='taxonomy' term='term']` - limit posts to those that exist in a taxonomy and have a specific term. Both are required for either one to work
53
  * `[ic_add_posts template='template-in-theme-dir.php']` - In case you want to style your markup, add meta data, etc. Each shortcode can reference a different template. These templates must exist in the theme directory.
@@ -129,6 +129,9 @@ Not likely, but let us know if it does; then we'll *know* we have something spec
129
 
130
  == Changelog ==
131
 
 
 
 
132
  = 1.3.0 =
133
  * File reorganization / housekeeping
134
  * Admin UI cleanup
@@ -136,7 +139,7 @@ Not likely, but let us know if it does; then we'll *know* we have something spec
136
  * Added ability to optionally include private posts - Thanks StarsoftAnalysis!
137
 
138
  = 1.2.4 =
139
- * now you can set `more_tag=""` to remove the `[...] …` that unfortunetly shows up as `&hellip`
140
 
141
  = 1.2.3 =
142
  * Added minor doc tweaks.
1
  === Posts in Page ===
2
  Contributors: ivycat, sewmyheadon, anvilzephyr, jasonm4563, pjackson1972
3
  Tags: shortcode, pages, posts, custom post types, taxonomy, terms
4
+ Requires at least: 4.0
5
+ Tested up to: 4.9
6
+ Stable tag: 1.3.1
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
47
  * `[ic_add_posts showposts='5']` - limit number of posts (or override default setting)
48
  * `[ic_add_posts orderby='title' order='ASC']` - orderby title - supports all WP orderby variables. Order is optional, WP default is 'DESC'.
49
  * `[ic_add_posts category='category-slug']` - Show posts within a specific category. Uses slugs, can have multiple but separate by commas. category-1,category2, etc (no spaces.)
50
+ * `[ic_add_posts exclude_category='category-slug']` - Exclude posts within specific category. Uses slugs, can have multiple slugs separated by commas. category-1,category2, etc (no spaces.)
51
  * `[ic_add_posts tag='tag-slug']` - Show posts using a specific tag. Like categories, it uses slugs, and can accommodate multiple tags separate by commas. tag-1,tag-2, etc (no spaces.)
52
  * `[ic_add_posts tax='taxonomy' term='term']` - limit posts to those that exist in a taxonomy and have a specific term. Both are required for either one to work
53
  * `[ic_add_posts template='template-in-theme-dir.php']` - In case you want to style your markup, add meta data, etc. Each shortcode can reference a different template. These templates must exist in the theme directory.
129
 
130
  == Changelog ==
131
 
132
+ = 1.3.1 =
133
+ * File header update / spelling fixes in readme.txt
134
+
135
  = 1.3.0 =
136
  * File reorganization / housekeeping
137
  * Admin UI cleanup
139
  * Added ability to optionally include private posts - Thanks StarsoftAnalysis!
140
 
141
  = 1.2.4 =
142
+ * now you can set `more_tag=""` to remove the `[...] …` that unfortunately shows up as `&hellip`
143
 
144
  = 1.2.3 =
145
  * Added minor doc tweaks.