Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@theRealRizeo
Created April 13, 2022 14:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save theRealRizeo/ca2f3fd5dd474a0fd7fb11238070fec3 to your computer and use it in GitHub Desktop.
Save theRealRizeo/ca2f3fd5dd474a0fd7fb11238070fec3 to your computer and use it in GitHub Desktop.
Hubloy Memberships Settings Tab Filter
<?php
add_filter( 'hubloy_membership_admin_settings_tabs', 'my_custom_settings_tab' );
function my_custom_settings_tab( $tabs ) {
$tabs[] = array(
'id' => 'custom',
'name' => __( 'Mycustom menu', 'memberships-by-hubloy' ),
'url' => 'custom'
);
return $tabs;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment