Download the PHP package keesiemeijer/additional-content without Composer
On this page you can find all versions of the php package keesiemeijer/additional-content. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download keesiemeijer/additional-content
More information about keesiemeijer/additional-content
Files in keesiemeijer/additional-content
Package additional-content
Short Description Displays additional content before or after post content in single post pages.
License GPL-2.0+
Homepage https://github.com/keesiemeijer/additional-content
Informations about the package additional-content
Additional Content 
Version: 1.3.0
Requires at least: 4.0
Tested up to: 4.8
Display additional content before or after post content in single post pages. Add content (for example shortcodes) on a post per post basis in the edit or publish Post screen.
Installation
Install via Composer into your WordPress plugins directory:
Or clone the GitHub repository in the plugins directory:
Or download it directly as a ZIP file
PHP requirements
This plugin requires the WordPress recommended PHP version of 5.4.0 or greater.
WordPress has PHP 5.2.4 as the minimum required version. This is a version that has been unsupported since early 2011. The PHP 5.3.* versions have been unsupported since August 2014 as well. This means that these versions don't receive any updates, which leaves them potentially insecure. http://www.wpupdatephp.com
Note: The plugin shows a notice when activated on the older PHP versions.
What is the priority option?
This plugin is basically a user interface for the_content filter. This filter allows themes and plugins to change (or add content to) post content before it's displayed. The default priority for filters is 10. Higher numbers correspond with later execution of adding additional content. This option allows you to display the additional content before or after other plugins that add content with this filter.
HTML in additional content
The same html tags that are allowed in the post (text) editor can be used in additional content. If you want to use <script>
tags in the content the user has to have the unfiltered_html capability (superadmin, admin and editor role).
Changing the metabox text strings
Let's say you want to use this plugin for authors to add shortcodes after the content on single post pages. All metabox text strings can be changed with the additional_content_metabox_text
filter. Put this in your (child) theme's functions.php file or use it in a plugin.
Options Display
The prepend, append and priority fields can be removed with the additional_content_metabox_options
filter. Put this in your (child) theme's functions.php file or use it in a plugin.
Additional content on other pages than single posts
Use the additional_content_add_content
filter if you want additional content to display on other pages as singular post pages. Put this in your (child) theme's functions.php file or use it in a plugin. This example adds the additional content to home page posts.