开发者 | apos37 |
---|---|
更新时间 | 2024年8月23日 02:13 |
PHP版本: | 7.4 及以上 |
WordPress版本: | 6.6.1 |
版权: | GPLv2 or later |
版权网址: | 版权信息 |
Anyone that has the Administrator role, or other roles that you specify.
Yes, you can choose to automatically feed documents or import them locally from a remote site with the same plugin.
Yes, you can make a request, or if you know what you're doing you can use the following PHP hook:
<?php add_filter( 'helpdocs_allowed_html', 'helpdocs_allowed_html', 10, 3 ); function helpdocs_allowed_html( $tags ) { // Add support for <example arg_1="" arg_2="" arg_3=""></example> // Add support for <example2 arg_1="" arg_2="" arg_3=""></example2> return array_merge( $tags, [ 'example' => [ 'arg_1' => true, 'arg_2' => true, 'arg_3' => true, ], 'example2' => [ 'arg_1' => true, 'arg_2' => true, 'arg_3' => true, ], ] ); } // End helpdocs_allowed_html() ?>
Join my Discord support server
[helpdocs_css]
shortcode for adding custom CSS to docs on the main doc page[dont_do_shortcode]
shortcode to make it easier to share shortcodes without executing themindex.php
to /classes/
and /js/
folders