8 Wordpress Tags you should replace
Posted By admin on June 11th, 2009
80% of Wordpress bloggers use free themes. That’s mainly because they’re free and they’re easy to install. But, do you know that free themes use PHP tags? That every time your site is loaded, these tags are loaded too to get your blog’s information? Replace these tags and make your blog load faster.
Open your theme editor and open your site’s page source. When you compare the codes of both sources, look for the following tagsĀ in your theme editor and replace it with the codes found on your page source.
- <?php language_attributes(); ?> found in header.php.
- <?php bloginfo(’html_type’); ?> found in header.php.
- <?php bloginfo(’charset’); ?> found in header.php.
- <?php bloginfo(’name’); ?> found throughout the theme. Replace it with your blog’s name.
- <?php bloginfo(’rss2_url’); ?> found in header.php.
- <?php bloginfo(’rss2_url’); ?> found in header.php. Replace it with your theme’s stylesheet address.
- <?php bloginfo(’description’); ?> found throughout the theme. Replace it with your site’s tag line.
Save the changes and reload your page.
Tags: Wordpress Tags