andru26
10/25/2018 - 9:50 PM

increase number of custom fields in drop down

add_filter( 'postmeta_form_limit', 'meta_limit_increase' );
function meta_limit_increase( $limit ) {
    return 50;
}