Heads up!
This article contains PHP code and is intended for developers. We offer this code as a courtesy, but don't provide support for code customizations or 3rd party development.
This article contains PHP code and is intended for developers. We offer this code as a courtesy, but don't provide support for code customizations or 3rd party development.
This hook can be used add custom content in the general settings subtab.
Usage
add_action( 'wpbdp_settings_subtab_[subtab name here]', 'bd_add_content' );
Parameters
- None
Examples
Add content
This example will add a custom content in the general settings subtab which belongs to the General main settings tab
add_action( 'wpbdp_settings_subtab_general/main', 'bd_add_content' ); function bd_add_content() { echo 'content here'; }
Change Log
Added in version 5.9