Description
Modify the max number of property values that can be displayed in a property value select in the Form Editor for Populate Anything.
Usage
Adjust the max property values in the form editor.
add_filter( 'gppa_max_property_values_in_editor', 'my_custom_function' );
Parameters
max_property_values int
Max number of property values that can be displayed. Default: 1,000
Examples
Raise max property values
Raise the max number of property values to 2,500.
add_filter( 'gppa_max_property_values_in_editor', function( $max_property_values ) {
return 2500;
} );