Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * Enables the Custom Fields metabox for reviews
- * @return void
- */
- add_action('admin_init', function () {
- add_post_type_support('site-review', 'custom-fields');
- });
- /**
- * Unprotect the Site Reviews "_custom_*" metakeys
- * @param bool $protected
- * @param string $metakey
- * @return bool
- */
- add_filter('is_protected_meta', function ($protected, $metakey) {
- if (substr($metakey, 0, 8) === "_custom_") {
- return false;
- }
- return $protected;
- }, 10, 2);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement