开发者 |
devcollab
hbrokmeier cparkinson |
---|---|
更新时间 | 2024年7月3日 02:41 |
PHP版本: | 8.0 及以上 |
WordPress版本: | 6.4 |
版权: | GPLv2 or later |
版权网址: | 版权信息 |
Handbook pages are displayed using the page.php
template. Use the editor_handbook_template
filter to customize which template is used.
function my_handbook_template( $template_names ) { return 'my-custom-handbook-template.php'; } add_filter( 'editor_handbook_template', 'my_handbook_template' );
After setting a new template, flush the rewrite rules by going to Settings > Permalinks in the admin dashboard.
read_private_handbooks