WDS Site Documentation

plugin banner

Host documentation for your clients right where they need it most: on the website! This plugin creates a page on the WordPress dashboard called " …

Author:WebDevStudios (profile at wordpress.org)
WordPress version required:5.2
WordPress version tested:6.0
Plugin version:1.0.2
Added to WordPress repository:25-03-2021
Last updated:07-06-2022
Rating, %:0
Rated by:0
Plugin URI:https://github.com/webdevstudios/wds-site-doc...
Total downloads:2 269
plugin download
Click to start download

Host documentation for your clients right where they need it most: on the website! This plugin creates a page on the WordPress dashboard called “Documentation” that shows a video and links to a PDF.

Brought to you by the fine folks at WebDevStudios!

Filters for developers

The URLs for the movie and PDF files can be modified with the wds_documentation_video_url and wds_documentation_pdf_url filters respectively. For example:

add_filter( 'wds_documentation_pdf_url', function( $pdf_url ) {
    return 'https://agency.site/docs/client.pdf';
}, 10, 1 );

The upload buttons can be turned off with the filter wds_documentation_enable_changes. To turn off the buttons, add this code to your theme’s functions.php file:

add_filter( 'wds_documentation_enable_changes', '__return_false', 10 );

The banner image can be modified with wds_documentation_banner_url:

add_filter( 'wds_documentation_banner_url', function( $banner_url ) {
    return 'https://agency.site/docs/agency.png';
}, 10, 1 );

The footer text can be customized with wds_documentation_footer:

add_filter( 'wds_documentation_footer', function( $footer ) {
    return '<a href="mailto:person@agency.site">Contact us!</a>';
}, 10, 1 );

Screenshots
FAQ
ChangeLog