Skip to content

Instantly share code, notes, and snippets.

@wbcomdev
Last active August 10, 2022 07:10
Show Gist options
  • Select an option

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

Select an option

Save wbcomdev/89ea67a05f4053b91e0a14f4c077f7a1 to your computer and use it in GitHub Desktop.
<?php
function ld_dashboard_after_content_callback() {
if ( isset( $_GET['tab'] ) && 'custom' === $_GET['tab'] ) { // We used the same slug here that we used while adding the menu i.e. 'custom'
echo 'This is custom nav content';
}
}
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