Please explain the functions and the action of codes I list below from head part.
Please explain the follwoing--
Please explain the follwoing--
- http-equiv="Content-Type"
- is_single and raquo
- Entire code in <script> area?
- what does meta 'description' & 'homedesc' do?
- Whats the use of putting <?php wp_get_archives('type=monthly&format=link'); ?> and <?php wp_head(); ?> in the head are?
Code:
<head>
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
<title>
<?php bloginfo('name'); ?>
<?php if ( is_single() ) { ?>
» Blog Archive
<?php } ?>
<?php wp_title(); ?>
</title>
<script src="<?php bloginfo('stylesheet_directory'); ?>/accordian.js" type="text/javascript" language="javascript"></script>
<meta name="homedesc" content="Enter your site description here" />
<!--PLEASE FILL-->
<meta name="keywords" content="Enter your site keywords here" />
<!--PLEASE FILL-->
<meta name="robots" content="index,follow" />
<!--PLEASE FILL-->
<meta name="author" content="Your Name" />
<!--PLEASE FILL-->
<meta name="description" content="1 line description of your site" />
<!--PLEASE FILL-->
<meta name="generator" content="WordPress <?php bloginfo('version'); ?>" />
<!-- leave this for stats please -->
<style type="text/css" media="screen">
@import url( <?php bloginfo('stylesheet_url');
?> );
</style>
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" />
<link rel="alternate" type="text/xml" title="RSS .92" href="<?php bloginfo('rss_url'); ?>" />
<link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="<?php bloginfo('atom_url'); ?>" />
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<?php wp_get_archives('type=monthly&format=link'); ?>
<?php //comments_popup_script(); // off by default ?>
<?php wp_head(); ?>
</head>