Guest User

Untitled

a guest
Nov 24th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. <?php
  2. add_filter( 'display_post_states', 'wpmudev_add_post_state', 10, 2 );
  3. function wpmudev_add_post_state( $states, $post ) {
  4. if( $post->post_name == 'contact' ) { //Slug of the page, this should be unique
  5. $states[] = 'Contact Page';
  6. }
  7. return $states;
  8. }
Add Comment
Please, Sign In to add comment