As explained here there is a WordPress limit of 30 for the number of custom fields that are available by default. But you can change the behavior as shown with the hook postmeta_form_limit
in the below example.
add_filter( 'postmeta_form_limit' , 'customfield_limit_increase' );
function customfield_limit_increase( $limit ) {
$limit = 100;
return $limit;
}
Related Posts:
- How to enable custom fields for pages (if not a bad practice)?
- Using TinyMce with textareas in meta boxes on custom post types
- How to add add_meta_box to specific Page Template?
- Having different sidebar content for MANY pages?
- Auto sort the wp-admin post list by a meta key
- Show Custom Comment Fields when editing in admin
- How to activate “custom fields” section in WP3
- Custom text-only header
- How To Create a Metabox of HTML Content with Instructions For Editors When Editing a Post or Page?
- Custom Page Template [closed]
- How to load php file for specific page in admin?
- Calling Specific Pages with wp query Part II
- Loop through two different sets of custom fields
- Why does this Quick Edit checkbox save the value only when unchecked?
- Add input field to ‘Pages > Edit Page’ through functions.php
- Can you ungroup Custom Fields?
- Add field to ‘Add User’ admin page
- Calling custom fields for pages (not posts)
- How make a custom search on backend in WordPress without plugin?
- How to Display pages with a Custom Fields in one page
- Custom Fields – Taller editing area
- Speed up / Optimize Admin Edit Post Page on Large Websites (50-150k posts, 50 custom fields per post)
- Custom Meta Box (SELECT) Not Saving
- Advanced Custom Fields dynamic update_field
- How to load an assets based on custom field value?
- Customizing WP user profile with custom fields
- get_post_meta() retrieves meta from a specific post on pages, not the page currently viewed
- How to pass page as an argument like post in WordPress?
- How can I use custom properties to set different background on different pages?
- TinyMCE custom button retrieve value from custom field
- Display a different image for each page with editor
- How to validation for sanitize_URL?
- Interrogate a page within a loop to check template type or custom meta data (Pages vs Posts)
- Make separate text boxes for separate WordPress Custom Fields
- Display the output from Custom User Fields from a WordPress user profile on a WordPress Custom Page
- Search & column order by meta value in admin
- Custom Fields – How to get the list of a specific active widget each time it rendered
- How to I change the value of a custom field on the home page?
- Load one page with parent and child pages
- Page template is missing fields or is invalid when I updating the template
- Sort custom fields in admin by last field added
- Make custom user_meta as permalink for post
- Why is wp_list_pages altering $post->ID of the page?
- How to use page metadata while using wp_list_pages()?
- Getting content from custom fields of different pages on a single page
- Decouple page name from page title
- How do I add custom fields to the “Edit page” admin screen?
- How do delete a meta key?
- Add custom fields to specific menus
- How to make donation button dynamic on chariti theme [closed]
- Advanced Custom Fields: how do I check to see if a value is set in an field? [closed]
- WP_Query – Order results by meta value
- How can I add an image upload field directly to a custom write panel?
- Add filter menu to admin list of posts (of custom type) to filter posts by custom field values
- getting all values for a custom field key (cross-post)
- How to add a custom field in the advanced menu properties?
- Custom query with orderby meta_value of custom field
- How to filter post listing (in WP dashboard posts listing) using a custom field (search functionality)?
- Adding Fields to the Category, Tag and Custom Taxonomy Edit Screen in the WordPress Admin?
- Using meta query (‘meta_query’) with a search query (‘s’)
- Can I exclude a post by meta key using pre_get_posts function?
- Add validation and error handling when saving custom fields?
- Query to sort a list by meta key first (if it exists), and show remaining posts without meta key ordered by title
- Show Custom Fields in Quick Edit
- Where are custom field values stored in the database
- Validating Custom Meta Box Values & Required Fields
- Max length of meta_value
- Add custom fields to wp native gallery settings
- How to fix missing custom fields after upgrading to WordPress 4.8.1?
- How can I add extra attribute in the ‘Page Attribute’ section in wp-admin for pages?
- Is there a way to set default custom fields when creating a post?
- Custom post meta field effect on the performance on the post
- How to get custom post meta using REST API
- Custom field/meta populated by dropdown of existing posts?
- Difference between meta keys with _ and without _ [duplicate]
- How do I improve this admin query snippet to avoid generating duplicate results on non-meta searches?
- Is there any action filter/hook for validating a custom field before publishing the post?
- Remove Dimension from wp_get_attachment_image
- Orderby meta_value only returns posts that have existing meta_key
- Underscores in custom fields
- What is the index [0] for on post meta fields?
- What is “meta_input” parameter in wp_insert_post() used for?
- Query Posts or Get Posts by custom fields, possible?
- How to enable revisions for post meta data?
- Sortable Custom Columns in User Panel (users.php)?
- Any way to add custom options to Gallery Settings?
- The “_encloseme” Meta-Key Conundrum
- ORDER BY custom field value
- Individual Widgets per Page
- Add subtitle to Woocommerce product title
- Best way to programmatically remove a category/term from a post
- Importing data for advanced custom fields plugin?
- Gutenberg add a custom metabox to default blocks
- SQL Query to copy value of a meta_key into another meta_key
- ‘Preview Changes’ for custom meta boxes?
- Adding a custom field to the site identity menu
- Filter WP_Query for posts having a certain meta-value
- How to correctly call custom field dates into a posts_where filter using SQL statements
- Using get_post_meta with new_to_publish
- Create a “Dummy” parent page for a hierarchy in page listing?