How do I get this to work for a particular front-end form only? It currently works as it should but I believe all forms will have this filter.
add_filter( 'rwmb_frontend_post_title', function( $field ) {
$field['required'] = true;
$field['name'] = 'Website Name:';
return $field;
} );
I was thinking the following conditional would work but it comes up empty.
if ( 'websites' === $config['id'] ) {
}