apply_filters() - custom title

PHOTO EMBED

Sun Feb 20 2022 11:49:38 GMT+0000 (Coordinated Universal Time)

Saved by @rafalw

apply_filters( string $hook_name, mixed $value )

With the_title filter

$my_custom_title = apply_filters('the_title', '  My Custom Title (tm)  ');
$my_custom_title will now contain 'My Custom Title ™', since the_title filter applies wptexturize() a
content_copyCOPY

https://developer.wordpress.org/reference/functions/apply_filters/