woof_print_applications_tabs_anvanced
Fires inside the Advanced tab navigation in the plugin options page, allowing extensions to add additional tab navigation items to the Advanced section.
Source File
views/plugin_options.php:1102
Code Example
add_action('woof_print_applications_tabs_anvanced', function() {
?>
<li>
<a href="#tabs-my-custom">
<span class="icon-star"></span>
<span><?php esc_html_e('My Tab', 'my-textdomain'); ?></span>
</a>
</li>
<?php
});
Usage Notes
- Note the intentional misspelling 'anvanced' (not 'advanced') in the hook name — this matches the actual code.
- Renders inside the <ul> navigation list alongside 'Code' and 'Options' tabs.
- The corresponding content section should use woof_print_applications_tabs_content_advanced.