gfpdf_post_tools_settings_page
See https://gravitypdf.
Description
do_action( 'gfpdf_post_tools_settings_page' );
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'gfpdf_post_tools_settings_page' );
- The following example is for adding a hook callback.
- // define the gfpdf_post_tools_settings_page callback
- function action_gfpdf_post_tools_settings_page( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'gfpdf_post_tools_settings_page', 'action_gfpdf_post_tools_settings_page', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'gfpdf_post_tools_settings_page', 'action_gfpdf_post_tools_settings_page', 10, 0 );
Defined (1)
The action is defined in the following location(s).
- /src/view/html/Settings/tools.php
- do_action( 'gfpdf_post_tools_settings_page' );