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_form" metakey
- * @param bool $protected
- * @param string $metakey
- * @return bool
- */
- add_filter('is_protected_meta', function ($protected, $metakey) {
- if ($metakey == '_custom_form') {
- return false;
- }
- return $protected;
- }, 10, 2);
RAW Paste Data
Copied