Documentation Plus is easy to create documentation for your software, bootstrap and font awesome support to create awesome documentation. By this plugin you can create unlimited documentation and display via short-code support pagination, thumbnails, awesome icon for title & list items.
Documentation Plus by
http://pickplugins.com
Plugin Features
- Fully responsive and mobile ready.
- Unlimited Documentation anywhere.
- Use via short-code.
- Easy input field for Documentation content.
- Archive for Documentation via short-code.
- Bootstrap & font awesome icon.
- Sorting for documentation section.
- WP Editor for section.
- Install as regular WordPress plugin.
- Go your plugin setting via WordPress Dashboard and find "Documentation Plus" activate it.
After activate plugin you will see "Documentation" menu at left side on WordPress dashboard click "New Documentation " and use the options field "Documentation Options"
Display documentation archive
you can display all documentation via archive with pagination support. use following short-code to display arcive
[documentation_plus_archive]
this short-code also has some parameter
- title_icon , use for font awesome icon or html, ex:
<i class="fa fa-file-text-o"></i>
- list_icon , use for font awesome icon or html, ex:
<i class="fa fa-file-text-o"></i>
- section_display , yes or no
- posts_per_page , integer value, default 5.
single documentation page full width issue fixing
Please add following code to fix full width issue on single documentation page, you will need to repalce the class
site-content
bellow code.
add_action('documentation_plus_action_before_single_documentation', 'documentation_plus_action_before_single_documentation', 10);
add_action('documentation_plus_action_after_single_documentation', 'documentation_plus_action_after_single_documentation', 10);
function documentation_plus_action_before_single_documentation() {
echo '
';
}
function documentation_plus_action_after_single_documentation() {
echo '';
}