<?php bloginfo('name'); ?> : The PHP function that calls for the title of the blog
<?php wp_title(); ?> : The PHP function that calls for the page name of the blog and is displayed in the title area of the browser
<?php the_content(); ?> : The PHP function that calls for thecontent of the specific post or page
<?php bloginfo('stylesheet_url'); ?> : The PHP function that calls for the style.css file's content
<?php get_header(); ?> : The PHP function that calls for the header.php file's content
<?php if(have_posts()) : ?><?php while(have_posts()) : the_post(); ?> : The PHP function that allows for the post or page to be dispalyed with it's content
<?php endwhile; ?> : Closes the 'while' PHP function
<?php endif; ?> : Closes the 'if' PHP functoin
<?php get_sidebar(); ?> : The PHP function that calls for the sidebar.php file's content
<?php get_footer(); ?> : The PHP function that calls for the footer.php file's content
<?php the_time('m-d-y') ?> : The PHP function that calls the date in '08-18-07' format
<?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?> : The PHP function that calls for the number of comments of the specific post or page
<?php the_permalink() ?> : The PHP function that calls the url of the specific post or page
<?php the_title(); ?> : The PHP function that calls the title of the specific post or page
<?php the_category(', ') ?> : The PHP function that calls the category of the post or page
<?php the_author(); ?> : The PHP function that calls for the name of the author
<?php edit_post_link('Edit', ' | ', "); ?> : The PHP function that allows the administrator of the theme to edit the specific post or page
<?php get_links_list(); ?> : The PHP function that calls for the blog roll
<?php comments_template(); ?> : The PHP function that calls for the comment.php file's conent
<?php previous_post_link('« %link') ?> : The PHP function that calls for the url to the previous post
<?php next_post_link(' %link »') ?> : The PHP function that calls for the url to the next post
<?php wp_list_pages(); ?> : The PHP function that calls for the list of the pages of the blog
<?php wp_list_cats(); ?> : The PHP function that calls for the list of the categories for the blog
<?php the_ID(); ?> : The PHP function that calls for the ID of the specific post or page