Top Google Search Results
- postmeta_form_limit Wordpress hook details -- Adam Brown, BYU ...
postmeta_form_limit. Description. Applied to the number of post-meta information items shown on the post edit screen. This description was scraped ... - WordPress › Support » Custom field limit?
There's a limit of 30 set in wp-admin/includes/template.php, however there is a filter hook postmeta_form_limit available if you wish to change it.. Here's an ... - Increase default number of custom fields | WordPress Snippets
Oct 19, 2010 ... <?php add_filter( 'postmeta_form_limit' , 'customfield_limit_increase' ); function customfield_limit_increase( $limit ) { $limit = 200; return $limit; } ... - Added 20 Custom Fields. Only 10 showing in drop down - WordPress
Apr 6, 2011 ... Run a filter on postmeta_form_limit to increase to your desired value, eg. add_filter( 'postmeta_form_limit', 'meta_limit_increase' ); function ...