Skip to content

Instantly share code, notes, and snippets.

@wbcomdev
Last active April 21, 2023 12:50
Show Gist options
  • Select an option

  • Save wbcomdev/de0f43777c48728317cf1f4ac7d3fb17 to your computer and use it in GitHub Desktop.

Select an option

Save wbcomdev/de0f43777c48728317cf1f4ac7d3fb17 to your computer and use it in GitHub Desktop.
<?php
function ld_dashboard_add_nav_menu( $menu_items ) {
$menu_items['all']['custom'] = array(
'url' => get_the_permalink() . '?tab=custom', // tab=custom sets the slug of your custom tab which will later be used to display content in this tab.
'icon' => '<img src="http://lddashboard.local/wp-content/plugins/ld-dashboard/public/img/icons/tachometer-alt.svg">',
'label' => 'Custom Nav',
);
return $menu_items;
}
add_filter( 'learndash_dashboard_nav_menu', 'ld_dashboard_add_nav_menu', 10, 1 );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment