I read that removing PHP from the <head> can increase download speed.I know very little about PHP, enough to wreck my website. I hear PHP can be overused and that websites load faster with less PHP in the <head>.
Can the PHP in this line be reduced to non PHP? I wouldn't think so because it appears to be a formula for finding the titles of the different pages of the website.
<title><?php bloginfo('name'); ?> <?php if ( is_single() ) { ?> » Blog Archive <?php } ?> <?php wp_title(); ?></title>
This line
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" /> I would think can be reduced by changing "<?php bloginfo('stylesheet_url'); ?>" to the address of the CSS page (ie
www.mysite.com/mycss.css) , so long as all the pages use the same CSS page.
This line
<meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /> <!-- leave this for stats --> Can't I just change this to
<meta name="generator"content="WordPress 2.5.1" /> and change the versio as I update?
This line
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" /> I have no idea what this line does and if it can be changed to non PHP.
This line is also in the <head>.
<?php wp_get_archives('type=monthly&format=link'); ?>
What is it for?, although it doen't look like it can be reduced to no PHP
Thanks Much