Skip to content

Instantly share code, notes, and snippets.

@rahularyan
Created August 3, 2015 06:05
Show Gist options
  • Save rahularyan/d9e19ad43397cca7495f to your computer and use it in GitHub Desktop.
Save rahularyan/d9e19ad43397cca7495f to your computer and use it in GitHub Desktop.
<?php
function my_ap_user_link($links){
unset($links['profile']); //This will remove profile
unset($links['reputation']); // This will remove reputation
unset($links['questions']); // This will remove questions
unset($links['answers']); //This will remove answers
unset($links['followers']); // This will remove followers
unset($links['following']); // this will remove following
return $links;
}
add_filter( 'ap_user_menu', 'my_ap_user_link' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment