um_settings_page_before_{$current_tab}_{$current_subtab}_content
Hook type
Action
Description
Show some content before settings page content
Usage
add_action( 'um_settings_page_before_{$current_tab}_{$current_subtab}_content', 'function_name', 10 );
Examples
<?php add_action( 'um_settings_page_before_{$current_tab}_{$current_subtab}_content', 'my_settings_page_before', 10 ); function my_settings_page_before() { // your code here } ?>
Change Log
Since: 2.0
Source
um_settings_page_before_{$current_tab}_{$current_subtab}_content
is located in includes/admin/core/class-admin-settings.php::line 1145