Advertisement
borkolivic

Custom post state

Feb 19th, 2021
666
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. add_filter( 'display_post_states', 'mx_custom_post_state', 10, 2 );
  2.  
  3. function mx_custom_post_state( $post_states, $post ) {
  4.  
  5.     if( $post->post_name == '404-error-page' ) { // upiši slug stranice
  6.         $post_states[] = 'Fulao si sve';  // upiši željeni "opis"
  7.     }
  8.  
  9.     return $post_states;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement