Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save barrykooij/b95a854d30727b90730b7db05dffd23f to your computer and use it in GitHub Desktop.
Save barrykooij/b95a854d30727b90730b7db05dffd23f to your computer and use it in GitHub Desktop.
function dlm_el_all_locked( $metadata, $object_id, $meta_key, $single ) {
if ( isset( $meta_key ) && '_dlm_el_locked' == $meta_key ) {
$metadata = 'yes';
}
return $metadata;
}
add_filter( 'get_post_metadata', 'dlm_el_all_locked', 100, 4 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment