Skip to content

Instantly share code, notes, and snippets.

@robertuniqid
Created September 11, 2017 14:08
Show Gist options
  • Save robertuniqid/dda196f3830691d7b650b39a07fbafce to your computer and use it in GitHub Desktop.
Save robertuniqid/dda196f3830691d7b650b39a07fbafce to your computer and use it in GitHub Desktop.
wpep-user-profile-test-tabs.php
<?php
add_filter( 'wpep_content_user_profile_tab_list', function( $tab_list ) {
for( $i = 1; $i <= 10 ; $i++ )
$tab_list['demo_tab_' . $i ] = [
'title' => 'Demo Tab ' . $i,
'content' => 'Demo Tab Content - ' . $i,
];
return $tab_list;
}, 20 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment