Skip to content

Instantly share code, notes, and snippets.

@lilumi
Created September 3, 2019 11:31
Show Gist options
  • Save lilumi/1ded04ce41b7b801e1b73f4e2a4cb208 to your computer and use it in GitHub Desktop.
Save lilumi/1ded04ce41b7b801e1b73f4e2a4cb208 to your computer and use it in GitHub Desktop.
Show system protected custom fields in wp backend metabox
<?php
add_filter( 'is_protected_meta', 'lm_show_hidden_cf', 10, 3 );
function lm_show_hidden_cf( $protected, $meta_key, $meta_type ) {
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment