Placeholder Text in Title Box as SEO Guidance for an SEO friendly title

I created a code snippet which has worked well, pastings here for others:


add_filter(
    'hivepress/v1/forms/listing_update',
    function( $form ) {
        $form['fields']['title']['placeholder'] = 'Search-Friendly: Include service, location, and details like audience, ages, capacity, condition, brand or company name etc';
        return $form;
    },
    1000
);