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:
posts-in-page
directory to your plugins folderTo ‘pull’ posts into a page, you can:
[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 using orderby
– 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 like date='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. An offset='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:
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 loopPosts in Page makes it easy to output or embed the posts, pages, or custom post types 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.
esc_html_e
instances.date=
and from_date=
and to_date=
.exclude_ids
, more_tag
.more_tag=""
to remove the [...] …
that unfortunetly shows up as &hellip
.[ic_add_posts ignore_sticky_posts='no']
.posts_loop_template.php
.