Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save peterjohnhunt/1ba6ce07c20ce415f9c634052f5cb45f to your computer and use it in GitHub Desktop.

Select an option

Save peterjohnhunt/1ba6ce07c20ce415f9c634052f5cb45f to your computer and use it in GitHub Desktop.
function custom_display_post_states( $states, $post ) {
$note = get_post_meta($post->ID, 'MY_META_FIELD_HERE', true);
if ( $note && !isset($states['note']) ) {
$states['note'] = $note;
}
return $states;
}
add_filter( 'display_post_states', 'custom_display_post_states', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment