Tag: WordPress
-
Remove all theme customizer inline css in WordPress
Recently I had trouble removing all the inline CSS created by the Theme Customizer. As I like to use normal CSS files (with LESS & Grunt of course) I was desperately looking for a way to purge these evil lines. After searching for over an hour I found that it’s as simple as putting the…
-
Double sitename in title with WordPress SEO
If you, like me, developed your WP theme before you activate the excellent WordPress SEO by Yoast you might have double sitenames in the title tag after activating the plugin. Something like: {Sitename}{Page title} | {Sitename} In your header.php file, the code of the title tag will look similar too: <title> <?php echo get_bloginfo(‘name’); ?><?php…