Get $500+ of the best After Effects files, video templates and music for only $20!
How to Create a WordPress Theme from Scratch

How to Create a WordPress Theme from Scratch

Tutorial Details
  • Program: WordPress
  • Difficulty: Beginner-Intermediate
  • Completion Time: 1-2 hours

Following on from the recent article on “PSD to HTML”, this tutorial will look at taking a HTML/CSS template and turning it into a functioning WordPress theme. There is so much you can do when creating your own theme we couldn’t nearly cover it all. So, we’re going to look at how themes are structured, creation of the core files and splitting up that index.html file.


Overview – The Structure Of A Theme

The structure of a WordPress theme is fairly simple, I like to start with the CSS file. It details everything about the theme for WordPress to use. You then have index.php – it’s simply the template file you’re using with the PHP template tags included. Included with that is header.php & footer.php, files that are used across the whole site. Now most themes don’t use just four files and that’s because WordPress allows you to use template files to layout different content. There are the defined layout files, such as archives.php and single.php. However you can also create your own, say, if you wanted to make a page that had a totally different layout to the default.

Because this is such a large topic we’re splitting it into a two part series – this part making a simple but functioning theme from a standard HTML & CSS template, and the second part will look at adding more of the advanced features.

I will be working on turning the great template “Typography Paramount” by Six Shooter Media into a simple WordPress theme.


Step 1 - style.css

The style sheet is the defining file of the theme for WordPress. There are a few simple things you need to do. The first is renaming the main (if you have more that one) file to style.css, next you need to add a bit of commenting to the file.

/*
Theme Name: Typography Paramount
Theme URI: http://www.sixshootermedia.com/
Description: An image-less template focusing on Typography.
Author: Sam Parkinson
Author URI: http://xseria.com
Version: 1.0
.
General comments/License Statement if any.
.
*/

The code above is all contained in a comment, so it won’t affect the style definitions. Now I filled it out with a few details, these will be used by WordPress to display the details of the theme to admins. Make sure you add it to the top of the file with no white-spaces before it.

I’ve gone and renamed the style sheet file from the template, it was called 1.css. I have also made a new folder called typography-paramount which will be what I upload to the WordPress theme folder. Put the style sheet in this folder, but not under another directory otherwise it cannot be seen by WordPress.


Step 2 - The Header and Footer

In this step, we’re going to create the two files: header.php and footer.php. Although they are optional both are used in most themes, they’re not exactly hard to use either.

header.php

Starting with the header, create a new file in the theme folder called header.php, then open up index.html from the template and copy the following from it. This will become the header and will be displayed on every page of the site, bear that in mind when making other templates.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>-</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="css/1.css" type="text/css" media="screen,projection" />

</head>

<body>

<div id="wrapper">

	<div id="header">

	<p class="description">

	An imageless template focusing on Typography.

	</p>

	<h1><a href="#">Typography Paramount</a></h1>

	<ul id="nav">

	<li><a href="#">Link Here</a></li>

	<li><a href="#" class="active">Link Here</a></li>

	<li><a href="#">Link Here</a></li>

	<li><a href="#">Link Here</a></li>

	<li><a href="#">Link Here</a></li>

	</ul>

	</div>

We’re now going to add the WordPress template tags to header.php, these tell WordPress where to inject the various content into the theme. Also remember to change that link to the stylesheet.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes() ?>>
<head profile="http://gmpg.org/xfn/11">
<title><?php bloginfo('name'); ?> <?php wp_title(); ?></title>
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen,projection" />

<?php wp_head(); ?>

</head>

<body>

<div id="wrapper">

	<div id="header">

	<p class="description"><?php bloginfo('description'); ?></p>

	<h1><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></h1>

	<ul id="nav">
	<?php wp_list_pages('sort_column=menu_order&title_li='); ?>
	</ul>

	</div>

There’s quite a lot that’s been added but it’s all fairly simple when you look through it. All the tags above are well documented in the WordPress Codex. I’m just going to go through what each of the functions do.

language_attributes() – Prints the language type for the <html>
tag.
bloginfo() – Used to print information about the site, the parameters
are available on the Codex, ‘name’ returns the title of the blog.
wp_title() – Simply returns the title of the page.
wp_head() – Prints the javascript links and other header stuff.
get_option() – Retrieves a value from the options database.
wp_list_pages() – Lists links to the site’s pages, the parameters sort
the pages correctly and also stop WordPress from printing a default title.

footer.php

Create the file footer.php and copy everything in the template from <div id="footer"> down-wards and shove it in the new file. A dynamic footer that displays the correct year, site title and a feed link is common place in themes, so lets add one.

<div id="footer">

	<!-- Please leave this line intact -->
	<p>Template design by <a href="http://www.sixshootermedia.com">Six Shooter Media</a><br />
	<!-- you can delete below here -->

	© <?php the_time('Y'); ?> <?php bloginfo('name'); ?><br />
	<a href="<?php bloginfo('rss2_url'); ?>">Grab the feed</a></p>

</div>

</div>

< ?php wp_footer(); ?>

</body>
</html>

I’ve gone and changed the footer to display the copyright icon, followed by the current year (<?php the_time('Y'); ?>) and the site’s name (<?php bloginfo('name'); ?>) then on a new line put a link to the rss feed (<?php bloginfo('rss2_url'); ?>).

wp_footer() is what WordPress uses to add things to the bottom of the
site, more often that not used by plugins to add things like site tracking code.


Step 3 - The Core File

We’re now going to create index.php

index.php

This is one of the two required files for a WordPress theme (the other being style.css), so lets get started. Create the file and put it along with the rest, then add to it the following.

<?php get_header(); ?>

<?php get_footer(); ?>

This simply tells WordPress where to include the header.php and footer.php files. Because this is a two part series we’re going to include the creation of the sidebar in the next article. You can either chose to leave it’s div in as static html or just leave it out which is what I will do. Add the following between the previous two tags.

<div id="content">

	<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>

	<h2><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>

	<?php the_content(); ?>

	<p><?php the_time('F j, Y'); ?> at <?php the_time('g:i a'); ?> | <?php the_category(', '); ?> | <?php comments_number('No comment', '1 comment', '% comments'); ?></p>

	<?php endwhile; else: ?>

	<h2>Woops...</h2>

	<p>Sorry, no posts we're found.</p>

	<?php endif; ?>

	<p align="center"><?php posts_nav_link(); ?></p>

</div>

This is what WordPress call the WordPress Loop. The first line of PHP starts this loop, endwhile is the end of it. WordPress fills out the loop for each article on the site, and if there isn’t any it displays that “Woops…” content. I’ve also added a navigation link that will place link’s to more articles, so visitors can take a look at older content without using the archive.

In the next article we will write up single.php, this would be what is displayed if a visitor clicks on the title of a post. It will include the commenting system, unlike index.php.


Review – Does it Work?

So we now have four files in out theme, assuming that you didn’t forget to update you index.php file (doh!) it should work as a simple but functional theme.

Test it out in that new theme previewer that been put in the latest WordPress, after looking around there only seems to be an issue with long titles, easily fixed by adding the following to #content h2 in the style sheet.

line-height: 30px;

Continue to Part 2.

Add Comment

Discussion 235 Comments

Comment Page 5 of 5 1 ... 3 4 5
  1. Thanks for the auspicious writeup. It if truth be told was once a enjoyment account it. Glance complicated to more added agreeable from you! However, how can we communicate?

  2. Kenan says:

    thanks alot for tut. i ll try to make it myself.

  3. tiu 7 says:

    This is often amazing. Anyone stare upon this gift footed so we are flabbergasted. We are curious about this type of equipment. Persons appreciate consumers opinion, and estimate the effort in this. Please keep cutting. They are incredible important content aid that may provide your public an exceptionally acknowledge report.

  4. wow great tutorial.. very informative..

  5. Thank you for this, really useful for a new site I’ve got in the works.

  6. Omsoftech says:

    nice tutorial for make wordpress themes i like. it….

  7. Thanks for the auspicious writeup. It if truth be told was once a enjoyment account it. Glance complicated to more added agreeable from you! However, how can we communicate?Jannat 2 I like This Website This is new style wordpress theme

  8. Heya i am for the primary time here. I came across this board and I to find It truly helpful & it helped me out a lot. I am hoping to provide one thing back and help others such as you aided me.

  9. Thanks for blogging this, it was quite handy and showed me quite a bit,thanks good publish.

  10. pram says:

    weew…
    seems it;s not really hard but i’m sure it isn’t as easy as we saw :D

  11. Sheew says:

    very useful tutorial for users who wants to create their own wordpress theme.

  12. Awarapan 2 says:

    very useful tutorial for users who wants to create their own wordpress theme.

  13. excellent stuff =) definitely enjoyed this article, i’ll read a bit more on the site after i’m finished with work! =)

  14. Cool tips I wil try apply this for my new theme

  15. sixeightzero says:

    An article like this never gets old, which is interesting. Working on a new theme, almost 4 years later and it’s still applicable.

    Good job!

  16. Musilda says:

    Thanks for usefull post, i want to learn create wordpress theme, this is really helpfull for me.

  17. Badar says:

    Wow… its more than amazing.. thanks buddy.. i have scrolled through more than many websites just to find an easy way to start my first project in wordpress, but haven’t found such an article… its really really easy and explains everything that you type in… Great work..

  18. buno says:

    thanx a lot buddy……i guess i have started to feel good about WordPress!!!!!

  19. JW says:

    Thank you so much for this clear, easy-to-follow tutorial! This has been so helpful. Looking forward to trying part 2 now!

  20. Raj kumar says:

    thanks for its tutorial…………………

  21. 新号外 says:

    good, thank u for your shares.

  22. Mbinu says:

    Nice Tutorial ,learning new stuff on wordpress ,keep up the good work.

  23. Ayel says:

    Thanks for this tutorial :)

  24. Krishna says:

    thanks for this tutorial……its help me a lot…..!

  25. Thanks for your great tutorial.

  26. jitendra says:

    Thank you so much for this clear, easy-to-follow tutorial! This has been so helpful. Looking forward to trying part 2 now!

Comment Page 5 of 5 1 ... 3 4 5

Add a Comment

To add a code snippet to your comment, please wrap your code like so: <pre name="code" class="html">YOUR CODE</pre>. You can replace the class name with "js," "css," "sql," or "php." If there are any "<" or ">" within your code, please search and replace them with: &lt; and &gt; respectively.