ਵੇਰਵਾ
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 );
ਸਕਰੀਨਸ਼ਾਟ
ਸਥਾਪਤੀਕਰਨ
- Upload the plugin to the
/wp-content/plugins/
directory - Activate the plugin through the ‘Plugins’ menu in WordPress
- Click the “Site Documentation” button in the Admin Bar or under “Settings” to view the documentation page.
- Upload a Video and PDF using the buttons there. These will show up on the page and on the WordPress dashboard.
ਅਕਸਰ ਪੁੱਛੇ ਜਾਂਦੇ ਸਵਾਲ
-
Why should I use this?
-
When an agency hands a site off to the client, they should also provide documentation on how to use the site, even if the site is mostly “vanilla WordPress.” This plugin makes it easy to set up a documentation section in the WordPress dashboard.
-
Absolutely! See the “Filters for developers” section.
-
Yes, you can! See the “Filters for developers” section.
-
Can you build my site?
-
Absolutely. Drop us a line!
ਸਮੀਖਿਆਵਾਂ
There are no reviews for this plugin.
ਯੋਗਦਾਨੀ ਤੇ ਵਿਕਾਸਕਾਰ
“WDS Site Documentation” is open source software. The following people have contributed to this plugin.
ਯੋਗਦਾਨੀ“WDS Site Documentation” ਦਾ ਆਪਣੀ ਭਾਸ਼ਾ ਵਿੱਚ ਅਨੁਵਾਦ ਕਰੋ।
ਵਿਕਾਸ ਕਾਰਜ ਵਿੱਚ ਰੁਚੀ ਰੱਖਦੇ ਹੋ?
Browse the code, check out the SVN repository, or subscribe to the development log by RSS.
ਤਬਦੀਲੀ-ਚਿੱਠਾ
1.0.2
- Confirmed WordPress 6.0 compatibility
1.0.1
- Fixes formatting issues in the README
1.0
- Initial release