Skip to content

Instantly share code, notes, and snippets.

@rahularyan
Created May 10, 2015 11:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rahularyan/5e6932f36cbbd2938de9 to your computer and use it in GitHub Desktop.
Save rahularyan/5e6932f36cbbd2938de9 to your computer and use it in GitHub Desktop.
Alter AnsPress tab titles
/**
* Filter for altering link from question list tab
* @param array $nav contain link of tab in array
* @return array
*/
function my_alter_ap_tab_item($nav){
$nav['newest']['title'] = __('Latst');
return $nav;
}
add_filter('ap_questions_tab', 'my_alter_ap_tab_item');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment