A WordPress plugin that adds a shortcode for embedding posts from another Wordpress blog into your site.
I've added a Shortcode Generator so you don't have to memorize the shortcode parameters!
The basic shortcode format is [ape_posts url="YourURLHere.com"]
Below are the parameters you can pass into the shortcode, however if you don't want to have to remember them, you may use the shortcode generator in your wp-admin.
-
(REQUIRED) Enter the URL of the blog that you wish to embed posts from. You must include
http://
orhttps://
at the beginning of the URL.Example:
url="http://wordpress.org"
-
Enter the number of posts you wish to display. Defaults to 3.
Example:
count="5"
-
Enter
true
orfalse
to determine if the featured image will be displayed or not. Defaults totrue
.Example:
image="false"
-
Available options include
thumbnail
,medium
,medium_large
,large
, andfull
. Defaults tofull
.NOTE: This is mostly for page speed or image quality purposes as the plugin CSS handles this by default.
Example:
excerpt="false"
-
Enter the slug of the tag you want to filter by. Find this by looking at the URL of the tag on the blog you are embedding from. (ie.
http://blogname.com/tag/slug-name
)Example:
tag="tag-slug"
-
Enter the slug of the category you want to filter by. Find this by looking at the URL of the tag on the blog you are embedding from. (ie.
http://blogname.com/category/slug-name
)Example:
category="category-slug"
-
Enter
true
orfalse
to determine if the post title will be displayed or not. Defaults totrue
.Example:
title="false"
-
Enter
true
orfalse
to determine if the post excerpt will be displayed or not. Defaults totrue
.Example:
excerpt="false"
-
Enter
true
orfalse
to determine if the link will open in a new tab or not. Defaults totrue
.Example:
new_tab="false"