php - Add special Character to All Wordpress Titles -
is there way force "#" sign automatically added beginning of wordpress post titles?
i know can force capitalized or lowercase, etc.. can add special character or word beginning of them all?
thanks!
i think amanda talking titles, not online browser's title..
you use function plugin, or in functions.php page:
add_filter('the_title', function($title) { return '#'. $title;})
Comments
Post a Comment