woof_print_applications_tabs_content_advanced
Fires at the end of the Advanced tab content area in the plugin options page, allowing extensions to add custom content sections to the Advanced tab.
Source File
views/plugin_options.php:1875
Code Example
add_action('woof_print_applications_tabs_content_advanced', function() {
?>
<section id="tabs-my-custom">
<h3><?php esc_html_e('My Custom Settings', 'my-textdomain'); ?></h3>
<p>Custom content here.</p>
</section>
<?php
});
Usage Notes
- Fires after the woof_print_option_advanced action and before the closing section tags.
- Typically paired with a nav tab added via woof_print_applications_tabs_anvanced.
- Content added here appears inside the Advanced tab panel.