Skip to content

Instantly share code, notes, and snippets.

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 biswajitpaul01/837f427eb014af9e167c96cd3f6d762b to your computer and use it in GitHub Desktop.
Save biswajitpaul01/837f427eb014af9e167c96cd3f6d762b to your computer and use it in GitHub Desktop.
Snippet to add post state to a WordPress page
<?php
//======================================================================
// Add post state to the projects page
//======================================================================
add_filter( 'display_post_states', 'ecs_add_post_state', 10, 2 );
function ecs_add_post_state( $post_states, $post ) {
if( $post->post_name == 'edit-profile' ) {
$post_states[] = 'Profile edit page';
}
return $post_states;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment