Do you want to reverse titles on your WordPress homepage? With this snippet, you can temporarily display your page title in reverse order on the homepage.
Instructions:
All you have to do is add this code to your theme’s functions.php file or in a site-specific plugin. Just remove the snippet from the functions.php and your website will return to normal.
function april_fools_wps($text){ if(is_home()){return strrev($text);}else{return $text;} } add_filter('the_title', 'april_fools_wps');
Note: If this is your first time adding code snippets in WordPress, then please refer to our guide on how to properly copy / paste code snippets in WordPress, so you don’t accidentally break your site.
If you liked this code snippet, please consider checking out our other articles on the site like: Best WordPress Page Builders (Compared).
Thank you for this!