Skip to content

Instantly share code, notes, and snippets.

@vapvarun
Created January 7, 2025 05:20
Show Gist options
  • Select an option

  • Save vapvarun/9782a66e3bf7be6b4b4b3e2a4e05470e to your computer and use it in GitHub Desktop.

Select an option

Save vapvarun/9782a66e3bf7be6b4b4b3e2a4e05470e to your computer and use it in GitHub Desktop.
ld_dashboard_add_nav_menu
function ld_dashboard_add_nav_menu( $menu_items ) {
$menu_items['all']['hello-world'] = array(
'url' => get_the_permalink() . '?tab=hello-world',
'icon' => '<img src="https://via.placeholder.com/24" alt="Hello World Icon">',
'label' => 'Hello World',
);
return $menu_items;
}
add_filter( 'learndash_dashboard_nav_menu', 'ld_dashboard_add_nav_menu', 10, 1 );
function ld_dashboard_after_content_callback() {
if ( isset( $_GET['tab'] ) && 'hello-world' === $_GET['tab'] ) {
echo '<h2>Hello, World!</h2>';
}
}
add_action( 'ld_dashboard_after_content', 'ld_dashboard_after_content_callback' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment