I have used create_function in my wordpress theme below.
add_filter('document_title_separator', create_function('', 'return "|";'));
and
add_filter('the_generator', create_function('', 'return "";'));
But for PHP 7.3, the create_function() is deprecated.
Any idea, how to fix my codes above on PHP 7.3.
Thanks for your help,
I tried this but it doesn't work :
add_filter('document_title_separator', function() {return |;});
and
add_filter('the_generator', function() {return ;'});