gg_isbn, gg_author.Need a fast way to create WordPress custom fields (post meta) for a Custom Post Type or add taxonomy term meta fields to categories, tags, or custom taxonomies? This tool generates clean PHP code that creates admin forms (meta boxes or term screens), saves values securely with nonces, and sanitizes data correctly for each field type.
Use it for real-world content models like Books (ISBN, Author), Products (SKU, Warranty), Events (Date, Venue), or Locations (Map URL, Address).
Meta fields (custom fields) are extra data saved with a post, page, CPT item, or taxonomy term.
Post meta is saved per post/CPT item. Term meta is saved per taxonomy term (like a category or a custom taxonomy term).
No. ACF is helpful, but WordPress supports meta fields natively. This tool generates the PHP code for you.
Yes. It includes nonces, capability checks, and sanitization tailored to each field type.
Yes. Enter multiple CPT keys separated by commas. One meta box can appear on multiple edit screens.
It enables WordPress REST API exposure for the meta field (useful for Gutenberg and headless setups).
Use get_post_meta($post_id, 'meta_key', true) or get_term_meta($term_id, 'meta_key', true).
Yes. Use Select or Radio type and provide comma-separated options in the field settings.
Yes. This tool can generate fields that store attachment IDs and includes a media uploader button.
No. Meta field registration and saving hooks are lightweight. Performance depends on queries and how much meta you load.
gg_ to avoid meta key collisions.