Wordpress Cheat Sheet
Wordpress Cheat Sheet
Wordpress Cheat Sheet
Cheat
Sheet
Basic
Template
files PHP
Snippets
for
Header
style.css Style
sheet
file <?php
bloginfo('name');?> Title
of
the
site
index.php Home
page
file <?php
wp_title(');
?> Title
of
the
specific
post
or
page
single.php Single
post
page
file <?php
bloginfo('stylesheet_url');
?> The
style.css
file's
location
archive.php Archive/category
file <?php
bloginfo('pingback_url');
?> Pingback
URL
for
this
site
searchform.php Search
form
file <?php
bloginfo('template_url');
?> Location
for
the
site's
theme
files
search.php Search
content
file <?php
bloginfo('version');
?> WordPress
version
for
the
site
404.php Error
page
file <?php
bloginfo('atom_url');
?> Atom
URL
for
the
site
comments.php Comments
template
file <?php
bloginfo(rss2_url');
?> RSS2
URL
for
the
site
footer.php Footer
content
file <?php
bloginfo('url');
?> Exact
URL
for
the
site
header.php Header
content
file <?php
bloginfo('namel');
?> Name
of
the
site
sidebar.php Sidebar
content
file <?php
bloginfo('html_typel');
?> HTML
version
of
the
site
page.php Single
page
file <?php
bloginfo('charset');
?> Charset
paramter
of
this
site
(1) Replace x with file name (2) Only for registered users
The
Loop
<?php
if
(have_posts());?>
<?php
while(have_posts());
the_post();?>
//
Post
content
here
(Custom
HTML
&
PHP
code)
<?php
else;?> Created
by
StartBloggingOnline.com
<?php
endif;?>