Skip to content

Instantly share code, notes, and snippets.

@man4toman
Created October 18, 2018 13:51
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 man4toman/f24b81c67efc0abf7ce6a389722593f2 to your computer and use it in GitHub Desktop.
Save man4toman/f24b81c67efc0abf7ce6a389722593f2 to your computer and use it in GitHub Desktop.
<?php
add_filter('views_edit-post','morteza_custom_filter_for_views_edit');
function morteza_custom_filter_for_views_edit( $views ) {
$views['all'] = 'Hell Admin!';
return $views;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment