You are on page 1of 1

header.

php
footer.php
index.php
s
i
d
e
b
a
r
.
p
h
p
WordPress Help Sheet.
<?php bloginfo('name'); ?>
<?php wp_title(); ?>
<?php bloginfo('stylesheet_url'); ?>
<?php bloginfo('pingback_url'); ?>
<?php bloginfo('template_url'); ?>
<?php bloginfo('version'); ?>
<?php bloginfo('atom_url'); ?>
<?php bloginfo('rss2_url'); ?>
<?php bloginfo('url'); ?>
<?php bloginfo('name'); ?>
<?php bloginfo('html_type'); ?>
<?php bloginfo('charset'); ?>
WordPress Help Sheet. WordPress Help Sheet. liquidicity liquidicity
style.css
index.php
single.php
archive.php
searchform.php
search.php
404.php
comments.php
footer.php
header.php
sidebar.php
page.php
Basic Template Files
Style sheet fle
Lists
PHP Snippets for Header
2007 Go Squared Ltd. & WPCandy
Home page fle
Single post page fle
Archive/category fle
Search form fle
Search content fle
Error page fle
Comments template fle
Footer content fle
Header content fle
Sidebar content fle
Single page fle
Title of the site
Title of the specifc post or page
The style.css fle's location
Pingback URL for the site
Location for the sites theme fles
WordPress version for the site
Atom URL for the site
RSS2 URL for the site
Exact URL for the site
Name of the site
HTML version of the site
Charset parameter of the site
<?php the_content(); ?>
<?php if(have_posts()) : ?>
<?php while(have_posts()) : the_post(); ?>
<?php endwhile; ?>
<?php endif; ?>
<?php get_header(); ?>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
<?php the_time('m-d-y') ?>
<?php comments_popup_link(); ?>
<?php the_title(); ?>
<?php the_permalink() ?>
<?php the_category(', ') ?>
<?php the_author(); ?>
<?php the_ID(); ?>
<?php edit_post_link(); ?>
<?php get_links_list(); ?>
<?php comments_template(); ?>
<?php wp_list_pages(); ?>
<?php wp_list_cats(); ?>
<?php next_post_link(' %link ') ?>
<?php previous_post_link('%link') ?>
<?php get_calendar(); ?>
<?php wp_get_archives() ?>
<?php posts_nav_link(); ?>
<?php bloginfo(description); ?>
PHP Snippets for Templates
Content of the posts
Checks if there are posts
Shows posts if posts are available
Closes the 'while' PHP function
Closes the 'if' PHP function
Header.php fle's content
Sidebar.php fle's content
Footer.php fle's content
The date in '08-18-07' format
Link for the comments on the post
Title of a specifc post or page
Url of a specifc post or page
Category of a specifc post or page
Author of a specifc post or page
ID of a specifc post or page
Link to edit a specifc post or page
Links from the blogroll
Comment.php fles content
List of pages of the
List of categories for the site
Url to the next post
Url to the previous post
The built-in calendar
List of archives for the site
Next and previous post link
Sites description
Extra Stuf
/%postname%/
Custom permalinks
<?php include(TEMPLATEPATH . /x); ?>
Include any file
<?php the_search_query(); ?>
Value for search form
<?php _e(Message); ?>
Prints out message
<?php wp_register(); ?>
Displays the register link
<?php wp_loginout(); ?>
Displays the login/logout link
<!--next page-->
Divides the content into pages
<!--more-->
Cuts off the content and adds a link to
the rest of the content
<?php wp_meta(); ?>
Meta for administrators
<?php timer_stop(1); ?>
Time to load the page
<?php echo get_num_queries(); ?>
Queries to load the page

2
1
1
Replace x with file name
2
Only for registered useres

You might also like