custom field option has limitation
-
Hi again,
I have a problem with “Custom field” limitation on the form
let’s say I have more than 100 custom fields stored on my wordpress site, the custom field i need to get is start with the z (for example: zoro).
because it’s located on the very bottom, i can’t see zoro custom field on the list of Displaying posts -> the custom fields tab -> Display this custom fieldI have add below code in function, but it only affect dropdown on the posts edit page, it did not affect your plugins.
// Increase number of meta custom fields shown in dropdown add_filter('postmeta_form_limit', 'customfield_limit_increase'); function customfield_limit_increase($limit) { $limit = 1000; return $limit; }
how can I increase number of meta custom fields shown in dropdown on your plugins?
cheers!
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘custom field option has limitation’ is closed to new replies.