Plugin / Get Post Content Shortcode

Eric King

Description

Description

This plugin provides a shortcode to get the content of a post based on ID number.
By default, the content will be passed through wpautop() and do_shortcode() unless you tell it not to by using attributes or filters as shown below.

Examples

[post-content id="42"]

This gets the content of post 42.

[post-content id="42" autop="false"]

This gets the content of post 42 and does not call wpautop on the content.

[post-content id="42" shortcode="false"]

This gets the content of post 42 and does not call do_shortcode on the content.

[post-content id="42" autop="false" shortcode="false"]

This gets the content of post 42 and does not call wpautop or do_shortcode on the content.

[post-content id="42" status="publish,future"]

This gets the content of post 42 only if the post_status is “publish” or “future”.

[post-content id="42" field="excerpt"]

This gets the excerpt of post 42.

Note:
The containing post may still have wpautop called on it’s content.

Attributes

  1. id – integer

    The post ID

  2. autop – boolean – default: true

    The following values equal true: true, 1, yes. All other values equal false.

  3. shortcode – boolean – default: true

    The following values equal true: true, 1, yes. All other values equal false.

  4. status – text – default: publish

    Any default or custom WordPress status value (publish, draft, future, etc.).

    The default value will be used if the status is not registered with WordPress.

  5. field – text – default: post_content

    The name of the database column you want to retrieve.

    This default value will be used if the column name is not in the array of allowed field names.

Filters

You can modify the fields that are allowed to be retrieved with this filter.

add_filter('post-content-allowed-fields', function($allowed_fields) {
    // Do your filtering here.
    return $allowed_fields;
});

You can specify the default shortcode attribute values.

add_filter('post-content-default-attributes', function ($default_attributes) {
    // Your code here.
    return $default_attributes;
});

You can filter attributes per shortcode usage

add_filter('shortcode_atts_post-content', function ($out, $pairs, $attributes) {
    // Your code here.
    return $out;
}, 10, 3);

Ratings

5
7 reviews

Rating breakdown

Details Information

Version

0.4.0

First Released

20 May, 2014

Total Downloads

2,596

Wordpress Version

3.6.0 or higher

Tested up to:

4.5.0

Require PHP Version:

-

Tags

Contributors

Languages

The plugin hasn't been transalated in any language other than English.

DIRECTORY DISCLAIMER

The information provided in this THEME/PLUGIN DIRECTORY is made available for information purposes only, and intended to serve as a resource to enable visitors to select a relevant theme or plugin. wpSocket gives no warranty of any kind, express or implied with regard to the information, including without limitation any warranty that the particular theme or plugin that you select is qualified on your situation.

The information in the individual theme or plugin displayed in the Directory is provided by the owners and contributors themselves. wpSocket gives no warranty as to the accuracy of the information and will not be liable to you for any loss or damage suffered by you as a consequence of your reliance on the information.

Links to respective sites are offered to assist in accessing additional information. The links may be outdated or broken. Connect to outside sites at your own risk. The Theme/Plugin Directory does not endorse the content or accuracy of any listing or external website.

While information is made available, no guarantee is given that the details provided are correct, complete or up-to-date.

wpSocket is not related to the theme or plugin, and also not responsible and expressly disclaims all liability for, damages of any kind, arising out of the use, reference to, or reliance on, any information or business listed throughout our site.

Keep Leading Your Followers!
Share it for them.