Skip to content

Instantly share code, notes, and snippets.

@ControlledChaos
Forked from shizhua/functions.php
Created October 24, 2017 00:15
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 ControlledChaos/f44bad6f6428d2f2e1ad6a475d1394b0 to your computer and use it in GitHub Desktop.
Save ControlledChaos/f44bad6f6428d2f2e1ad6a475d1394b0 to your computer and use it in GitHub Desktop.
Add custom post states in WordPress
<?php
add_filter('display_post_states', 'wpsites_custom_post_states');
function wpsites_custom_post_states($states) {
global $post;
if( ('page'==get_post_type($post->ID)) && ('page-templates/custom-page-template.php'==get_page_template_slug($post->ID)) ) {
$states[] = __('Custom state');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment