Description
The wsf_settings_button filter allows you to specify HTML markup for a settings button on the Settings page.
Usage
add_filter( 'wsf_settings_button', 'my_hook_function', 10, 3 );
Parameters
Example
// Callback function for the wsf_settings_button filter hook function my_hook_function( $html, $meta_key, $button ) { // Your code here ... // Return value return $html; } // Add a callback function for the wsf_settings_button filter hook add_filter( 'wsf_settings_button', 'my_hook_function', 10, 3 );
Source File
This hook can be found in:<plugin root>/admin/partials/ws-form-settings.php