Contributors: ivycat, sewmyheadon, anvilzephyr, jasonm4563, pjackson1972
Tags: shortcode, pages, posts, custom post types, taxonomy, terms
Requires at least: 3.0
Tested up to: 6.1.1
Stable tag: 1.4.6
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Easily add one or more posts to any page using simple shortcodes.
Easily add one or more posts to any page using simple shortcodes.
Supports categories, tags, custom post types, custom taxonomies, date ranges, post status, and much more.
You can get all of the same functionality provided by this plugin by modifying your theme's template files; this plugin just makes it easy for anyone to pull posts into other areas of the site without having to get their hands dirty with code.
Plugin is depending upon your theme's styling; version 1.x of this plugin does not contain native styles.
This is a minimal plugin, function over form. Give us feedback, suggestions, bug reports, and any other contributions on the in the plugin's GitHub repository.
You can install from within WordPress using the Plugin/Add New feature, or if you wish to manually install:
- Download the plugin.
- Upload the entire
posts-in-page
directory to your plugins folder - Activate the plugin from the plugin page in your WordPress Dashboard
- Start embedding posts in whatever pages you like using shortcodes.
To 'pull' posts into a page, you can:
- place a shortcode in the editor window of the page you're editing (Classic Editor),
- place a shortcode in a shortcode block on the page you're editing (Gutenberg Editor),
- modify a theme template file using the shortcode in a PHP function.
[ic_add_posts]
- Add all posts to a page (limit to what number posts in WordPress is set to), essentially adds blog "page" to page.[ic_add_posts post_type='post_type']
- Show posts from a custom post type by specifying the post type slug (must give post type if not a standard post). Add multiple post types by separating with commas (ex.post_type='post_type1,post_type2'
).[ic_add_posts showposts='5']
- Limit number of posts (or override default setting).[ic_add_posts orderby='title' order='ASC']
- Order the post output usingorderby
- supports all WP orderby parameters. Order is optional, default is 'DESC'.[ic_add_posts ids='1,2,3']
- Show one or many posts by specifying the post ID(s) (specify all post types).[ic_add_posts exclude_ids='4,5,6']
- Exclude specific post ID(s) from the query.[ic_add_posts category='category-slug']
- Show posts within a specific category by category slug. Separate multiple categories with commas.[ic_add_posts cats='2,13']
- Show posts within a specific category by category IDs. Separate multiple categories with commas.[ic_add_posts exclude_category='category-slug']
- Exclude posts within specific category. Uses slugs, can list multiple category slugs separated by commas.[ic_add_posts tag='tag-slug']
- Show posts using a specific tag. Like categories, it uses slugs, and can accommodate multiple tags separated by commas.[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 and you must specify custom post_types.[ic_add_posts post_format='post-format-status']
- Select post formats. Use 'post-format-' followed by the format type (chat, aside, video, etc.). Use comma to separate post formats. To pull all posts with the quotes format, you'd use[ic_add_posts post_format='post-format-quote']
.[ic_add_posts ignore_sticky_posts='no']
- Show sticky posts too (they're ignored by default).[ic_add_posts paginate='yes']
- Use pagination links (off by default).[ic_add_posts label_next='Next' label_previous='Previous']
- Customize 'Next' and 'Previous' labels used by pagination.[ic_add_posts post_status='private']
- Show posts with the specified status. By default it shows only posts with 'publish' status. To select multiple statuses, separate them with commas like so:post_status='private,publish'
.[ic_add_posts more_tag='Read more']
- Set the link text for read more links shown after an excerpt.[ic_add_posts date='today-1']
- Choose the relative date of included posts. Supports formatting likedate='today-1'
(today minus 1 day),date='week-2'
(today minus 2 weeks),date='month-1'
(today minus 1 month),date='year-1'
(today minus 1 year).[ic_add_posts from_date='15-01-2016' to_date='31-12-2016']
- Shows posts published within a specified absolute date range.[ic_add_posts offset='3']
- Displays posts after the offset. Anoffset='3'
will show all posts from the 4th one back.[ic_add_posts none_found='No Posts Found']
- Custom message to display when no posts are found.[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 or in a sub-directory named posts-in-page.
Or any combination of the above.
Not sure how to use the shortcodes above to get what you want? Here are a few examples to get you started:
** Example 1 **
Let's say you want to pull a specific post called "What I love about coffee", which has a post ID of 34, somewhere on your About Us page. Your shortcode should look like this:
[ic_add_posts ids='34']
** Example 2 **
Alright, now let's say that you want to pull in all posts from two categories into your WordPress page. One category is WordPress Rocks and the other is WordPress Rolls. Plus, you'd like to display them three per page, rather than the default number of posts. Depending on your category slugs, your shortcode should probably look like this:
[ic_add_posts category='wordpress-rocks,wordpress-rolls' showposts='3']
** Example 3 **
Now, you're ambitious and want to try something complex. Let's say you've got a page called Plugins Are Awesome and, in it, you want to pull in posts that match the following criteria:
- posts from a custom post type called Testimonials,
- posts that are in the Testimonial Type custom taxonomy using the term Customer,
- you want to display six testimonials per page,
- you'd like them displayed in ascending order,
- finally, you've created a custom template to use in presenting these posts and named it
my-posts-in-page-template.php
.
Your shortcode might look like this:
[ic_add_posts showposts='6' post_type='testimonials' tax='testimonial-type' term='customer' order='ASC' template='my-posts-in-page-template.php']
If you'd like to use this plugin to pull posts directly into your theme's template files, you can drop the following WordPress function in your template files, replacing the [shortcode]
part with your, custom shortcode.
<?php echo do_shortcode("[shortcode]"); ?>
There are several hooks you can use to filter the output of your template files:
posts_in_page_results
- Filter resultsposts_in_page_args
- Filter the query argumentsposts_in_page_paginate
- Filter paginationposts_in_page_pre_loop
- Runs right before the loop (posts_loop_template.php)posts_in_page_post_loop
- Runs right after the loop
It allows you to output or embed the posts in any page without modifying WordPress theme templates.
Absolutely. Just use a Gutenberg Shortcode block or the Classic Edit block to add your shortcode.
That is likely true. Currently, Posts in Page doesn't output any styles; just some basic markup. To change how the posts appear on the page, you'll need to change the output template.
Simply copy the posts_loop_template.php
to your theme directory and make changes as necessary.
You can even rename it - but make sure to indicate that in the shortcode using the template='my-new-template-name.php'
.
For file housekeeping, you can also create a posts-in-page folder in your theme to store all of your custom templates. It isn't necessary to specify the posts-in-page folder in your shortcode - Posts in Page will find it automatically. You can even use multiple templates for use with different shortcodes.
Absolutely.
You bet.
Not likely, but let us know if it does; then we'll know we have something special.
We'd love feedback, issues, pull requests, and ideas on the Posts in Page GitHub repo.
[missing image]
- Fix issue to prevent fatal errors caused by setting the global query to null.
- Fix issue with missing wrapping pagination div.
- Fix a few
esc_html_e
instances.
- Thanks to Brady Vercher (@bradyvercher) for the thorough code review and fixes.
- Cleanup code to better conform to WP Coding standards and remove legacy cruft.
- PHPCS configuration.
- Update docblock and comments.
- Remove legacy i18n code.
- Escaping output of URLs, translation strings, and more.
- Updated enqueueing to add version for cache busting, add missing jQuery dependency, load admin script in footer.
- Fix wp_reset_query bug
- Patch pagination to make it more reliable across themes.
- Add templates folder to structure and moved default template there.
- Fix pagination issues #42, 59.
- Fix bug preventing including or excluding multiple post_types or categories.
- Add a few new date-based shortcode arguments including
date=
andfrom_date=
andto_date=
. - Document post format support, new shortcode arguments.
- Code cleanup.
- Updates to admin page layout and documentation.
- File header housekeeping.
- Code cleanup.
- Fix WPML compatibility issue (thanks @azrall).
- Document new shortcode functions including
exclude_ids
,more_tag
.
- File reorganization / housekeeping.
- Admin UI cleanup.
- Security: Fixed directory traversal vulnerability.
- Added ability to optionally include private posts - Thanks, StarsoftAnalysis!
- now you can set
more_tag=""
to remove the[...] …
that unfortunetly shows up as&hellip
.
- Added minor doc tweaks.
- Added pagination, tweaked to turn off by default.
- Bug fixes.
- Added code to allow ignoring, or showing of sticky posts. By default, sticky posts are ignored, but can be re-enabled using the shortcode
[ic_add_posts ignore_sticky_posts='no']
.
- Code maintenance to better comply with standards.
- Added post pagination.
- Plugin now honors default post reading settings under Settings/Reading in the WordPress Dashboard.
- Improved and simplified documentation.
- Code maintenance, fix for category bug, also added the ability for multiple post types per shortcode.
- Code maintenance, squash non-critical debug notices.
- Added check for published/private posts.
- Fixed template bug introduced by comments.
- Code cleanup & indentation.
- Added comments and notes to output template file:
posts_loop_template.php
.
- Added Help Page under Setting in WP Dashboard.
- More plugin housekeeping.
- Minor housekeeping, added author, updated readme.txt.
- Added single post or specific post capabilities.
- Bug fix - please upgrade for stability.
- Pagination bug fix and two minor i18n updates for translatable strings. Please upgrade.
- Code review, cleanup. Minor fixes and security updates. Please upgrade.
- Critical bug fixes. Please upgrade.
- Bug fixes, new shortcodes, and code improvements. Please upgrade.
- Important security and version updates. Please upgrade.
- Presentational fixes: clean up whitespace, extra tabs, add in customization of more tag.
- Housekeeping only; not urgent.
- Small bug fixes for tags, pagination; not critical.
- Small feature update, not critical.
- Important feature update - please upgrade.
- Small bug fix - please upgrade.
- Code maintenance & housekeeping - non-critical update.
- Added feature - non-critical update.
- Fixed template bug - please update.
- Added features and documentation - non-critical update.
- Added Help Page - non-critical update.
- Plugin housekeeping - non-critical update.
- Minor housekeeping, added author, updated readme.txt. Non-critical update.
- Added single post or specific post capabilities. Important feature.