This is the Chapter II of the Complete WordPress Theme Guide series. This chapter will show you how to build a custom WordPress theme. Although the Codex site provides very good documentations on how to create a theme, but I find it too complicated for a beginner. In this tutorial, I will explain the basics of how WordPress theme works and show you how to convert a static HTML template into a theme. No PHP skill is required, but you need Photoshop and CSS skills to create your own design.

1. The Blog Frontend

Before you start, let’s take a look at the WordPress default theme and see how it is structured. Take note of the elements (header, post title, search form, navigation, footer, etc.).

default homepage Default Frontpage (index.php)

default homepage Default Single (single.php)

2. Photoshop Mockups

Based on the information gathered from the default theme, design a Photoshop mockup of your blog. Here I’m using GlossyBlue, one of my free WordPress themes, as an example. Download the demo.zip to see the Photoshop file.

default homepage

3. HTML + CSS

After the PSD design is done, create a static HTML+CSS template of each page. You can use my GlossyBlue HTML files in the demo.zip to follow this tutorial. Extract the zip and take a look at the index.html, single.html, and page.html. Later in the tutorial, I will use these HTML files and convert them into a theme.

default homepage

Why Create a Static HTML File First?

Mainly because it will make the development process a lot easier. I usually create a HTML file for every template that I need, test it across all browsers, validate both HTML and CSS markups, then all I have to do is cut & paste the WordPress code. By doing so, I don’t have to worry about HTML or CSS bugs during my theme making process.

4. How WordPress Theme Works

If you go the default theme folder (wp-content/themes/default), you should see many PHP files (called template file) and one style.css file. When you are viewing the front page, WordPress actually uses several template files to generate the page (index.php << header.php, sidebar.php, and footer.php).

how theme works

For more details, check out Site Architecture and Template Hierarchy at Codex.

5. Duplicate The Template Files

Copy the GlossyBlue HTML folder into the wp-content/themes folder. Then, go to the default theme folder, copy the comments.php and searchform.php file to the glossyblue folder.

copy files

6. Style.css

Go to the WordPress default theme folder, open the style.css file. Copy the commented code at the top and paste it to the GlossyBlue style.css file. Change the theme name and the author information as you desire.

theme name and author's information

7. Splitting The Files

Now you need to understand where to split the file into several files: header.php, sidebar.php, and footer.php. The image below shows a simplified version of my index file and how the markups should split.

splitting files

8. Header.php

Open the index.html file. Cut from the top to where the <!--/header --> ends, paste it in a new PHP file, and save the file as header.php.

header code

Go to the default theme folder, open the header.php. Copy and replace the tags where it requires PHP code (Template Tag): <title>, <link> stylesheet, <h1>, and <div class=description>.

replace code

Navigation Menu (wp_list_pages)

Replace the <li> tags in the <ul id=nav> with <?php wp_list_pages('sort_column=menu_order&depth=1&title_li=');?>

replace code

Reference: wp_list_pages.

9. Sidebar.php

Back to the index.html file, cut from where the <form id=searchform> start to the closing tag of <div id=sidebar> and paste it in a new PHP file, save it as sidebar.php.

  • Replace the <form id=searchform> wrap with <?php include (TEMPLATEPATH . '/searchform.php'); ?>.
  • Replace the category <li> tags with <?php wp_list_categories('show_count=1&title_li='); ?>
  • Replace the archive <li> tags with <?php wp_get_archives('type=monthly'); ?>

sidebar

References: wp_list_categories and wp_get_archives.

10. Footer.php

Back to the index.html file, cut from the <div id=footer> tag to the end of </html> and paste it in a new PHP file, save it as footer.php.

footer

Recent Posts

Here I used the query_post to display the 5 latest posts.

recent posts

Recent Comments

Recent comments are generated by a plugin (included in the theme folder).

recent comments

11. Index.php

Now in your index.html file, you should only have the <div id=content> wrap. Save the file as index.php. Insert the line:get_header, get_sidebar, and get_footer in the same order as your layout structure.

index

12. Understanding The Loop

The image below illustrates how The Loop works. The Loop is used to display blog posts and it also lets you control what to display. Basically, The Loop checks if there are posts in your blog, while there are posts, display it, if no post found, say "Not Found".

the loop

13. Copy The Loop

Go to the default theme folder, open the index.php file. Copy The Loop from the default index.php and paste it in between the <div id=content>..</div>. Then, replace the static text with the WordPress Template Tags: post date, title, category, comments, next and previous link.

the Loop

14. Preview The Theme

Congrats! You’ve done the front page (the main part of the theme). Now, login to your admin panel, go to the Design tab, you should see the GlossyBlue theme, activate it and go to the front page to preview the theme.

15. Single.php

Now, it is time to do the single.php template. If you want, you can go through the same process — cut & paste from the default theme. But, I find it easier to use the index.php that you just created and save it as single.php. Open the default theme single.php file and copy the Template Tags over. Then include the comments_template. The image below highlights what I’ve changed:

single.php

16. Page.php

With the single.php template you just created, save it as page.php. Remove the post date, comment form, next/previous link… and that’s it.. there goes your page.php template.

17. Delete The HTML Files

Delete all the HTML files in the glossyblue folder (we don’t need them anymore). Technically, that is enough for a basic WordPress theme. You may notice there are more PHP files in the default theme. Well, you don’t really need those files if you just want a basic theme. For example, if the search.php or 404.php is not present in the theme folder, WordPress will automatically use the index.php to render the page. Read the Template Hierarchy for more details.

18. WordPress Page Template

Ok, final example. I will show you how to use Page Template to create an archive page that will list all posts on your blog (good for sitemap). Copy the archives.php file from the default theme folder. Delete the unwanted code and you should have something like this:

Archives template

Here I’m using the query_post (showposts=-1 means display all posts) to display a list of all posts.

Archives query posts

Now, login to your admin panel, write a new page, title it Archives. On the Page Template dropdown, select Archives.

Archives page

More Reading:

Check out a list of WordPress Plugins that you may find useful. For more advance theme coding, read my WordPress Theme Hacks.

What’s Next…

In the next chapter, I will show you how to export your local WordPress to a web host and keep the local version for backup purpose.

821 Comments

Josh
Nov 17, 2008 at 1:39 am

Great work Nick! Thanks for making life a little bit easier :)

-Josh
—————————–
http://www.afreshnewlife.com

teraom
Nov 17, 2008 at 1:40 am

That was really in detail. I however am looking for a few more resources that would make things easier.
1. a skeleton theme from which i can start
2. good editors and other tools
3. Is there a tool where i can draw and edit divs for wordpress?
4. psd to xhtml conversion.

pascalv
Nov 17, 2008 at 1:44 am

very useful and good timing looking at what other blogs have been posting lately.

Permana Jayanta
Nov 17, 2008 at 2:11 am

This is what I’m looking for

I agree to save the HTML + CSS version, so you can convert the template to another CMS (Blogger, Drupal).

Mohsen
Nov 17, 2008 at 2:43 am

Great Article!

Antony_256
Nov 17, 2008 at 2:54 am

@teraom: About No. 1: http://www.plaintxt.org/themes/sandbox/

taotsu-pro.jp
Nov 17, 2008 at 3:37 am

a good naked theme comes from elliot jay stocks. starkers is basically the default theme stripped.
and thanx for the Guide, it helps ^.^

nokill
Nov 17, 2008 at 4:00 am

great tutorial when i get time ill surely try this out
by the looks of it even I can do this ^_^

Tobi
Nov 17, 2008 at 4:02 am

THX for this great Tut. I love wordpress and because of your tut i can make my WP-pages better. Thank u very much!

pluto
Nov 17, 2008 at 4:20 am

good job! I agree to save the html+css version, maybe someday you will update your theme very easily

Ian Purton
Nov 17, 2008 at 4:41 am

I’ve wriiten a bare SEO WordPress Sandbox Theme that is SEO’d and ready for styling with css alone.

It uses the yahoo css framework.

Max
Nov 17, 2008 at 4:45 am

Great walkthrough, this will be alot of help for the theme creation process.

abdulaziz
Nov 17, 2008 at 5:31 am

THANK YOU MAN YOU ARE CREATIVE :)

converse basket
Mar 27, 2012 at 5:17 am

Your kids look so cute! We used to do so much for Halloween (yes my husband and I would dress up too) but them it all got to be too much since my husband loves to decorate for Christmas. He loves lights! So now we don’t really do anything for Halloween because we start the stringing of the lights in early Novembe3!

As always you have such fun and informative posts!

Henk
Nov 17, 2008 at 5:54 am

Very useful. Thank you for sharing!

Patris
Nov 17, 2008 at 5:55 am

Thank you, it comes in a good moment for me, very clear and helpful! ^^

David
Nov 17, 2008 at 6:00 am

good job nick. perfect for the first experiments with wordpress.

Designer
Nov 17, 2008 at 6:06 am

wow…..thanks for the article

eeallo
Nov 17, 2008 at 6:10 am

Child themes are an easy way to get started. Use a theme framework (Sandbox or Thematic) as a starting point. Firebug plugin tells you everything you need to know about the styles in your themes.

Modula White Dwarf is a clean and minimalistic Sandbox child theme. Check it out too.

insicdesigns
Nov 17, 2008 at 6:29 am

wow. this tutorials kicks as*s! lol. very detailed and informative. thanks for posting.

mark
Nov 17, 2008 at 6:56 am

Nice one! Clear and concise as always.

Great job.

Karri
Nov 17, 2008 at 7:26 am

Thanks for this article, it’s really useful for a WordPress beginner as myself. These kind of tutorials help us to understand the functions of WordPress theme and are well worth a bookmark. It’s something valuable for the community.

One day I will build my own theme, and do something creative. And release it as a free theme for others, of course. But before that, there’s a few lessons to be learned.

Thanks again for the inspiration!

Martin
Nov 17, 2008 at 7:31 am

Great article man, I’m a beginner with WP too and this is very very very useful. Thanks! Keep up the good work.

Kenneth
Nov 17, 2008 at 7:44 am

Awesome tutorial! Thank you very much.

witmin
Nov 17, 2008 at 7:54 am

Hard work and nice done, visual workflow, thank you !

pnolan
Nov 17, 2008 at 8:13 am

MAN only 9 more hrs before I can go home and work on this.

Great article/series, really appreciated

Matt89fe
Nov 17, 2008 at 8:24 am

5 star man!! i appreciate :)

snx
Nov 17, 2008 at 8:33 am

excellent work!

David Hage
Nov 17, 2008 at 8:37 am

Looking forward to giving it a go when I have some time tonight. Thanks very much Nick! It’s not hard to find WordPress tutorials, but it’s very hard to find clear, well thought out tutorials with visual examples like this.

Mike Markie
Nov 17, 2008 at 9:02 am

I can honestly say you put a new spin on things, its actually a nice tutorial.

gelay Jamtsho
Nov 17, 2008 at 10:43 am

Thanks. This tutorial has been very helpful.

john d
Nov 17, 2008 at 10:44 am

Can you show us how you customize the dates that go next to posts like the tabs that you have in your posts?

Mehdi
Nov 17, 2008 at 10:45 am

w0o0ow. very nice!!!

CMHB
Nov 17, 2008 at 10:45 am

This is a very insightful and elaborate tutorial. Excellent work. I’m not a huge WordPress user, and tend to swap between that and MovableType although the former has far more plug-ins. Anyway, very useful, many thanks.

Elizabeth
Nov 17, 2008 at 10:49 am

Thanks for this. I struggled for months figuring out WordPress, and though I’m proud to say I’ve finally got it (through trial and error), I hope this tutorial helps others. I never thought of creating XHTML/CSS pages first. I think I’ll implement that into my next theme venture. Thanks, Nick!

Free Wordpress Themes
Nov 17, 2008 at 11:37 am

Nice tutorial, very helpful, Please feel free to submit your free wordpress themes to our directory here http://www.wpthemes4free.com/add-theme/

Diego
Nov 17, 2008 at 11:38 am

Really useful mate cheers,

Diego
http://www.wan2design.co.uk

Science Technology News
Nov 17, 2008 at 11:47 am

Really useful tutorial. I will try to create my own WP theme.

Thanks again.

Nikko
Nov 17, 2008 at 12:22 pm

You know Kuya Nick your blog is really helpful.
Thank you very much and God Bless you always!

=)

Brian
Nov 17, 2008 at 12:28 pm

Wow. Brilliant. You’ve done the world a great service by documenting this. Thanks a million!

Id
Nov 17, 2008 at 12:47 pm

Wonderful!
Very clean and objective!
Congratulations!

joyoge
Nov 17, 2008 at 1:23 pm

http://joyoge.com/story.php?title=building-custom-wordpress-theme

thanks a lot..

Todd Smith
Nov 17, 2008 at 1:41 pm

Excellent! I’ve got my work cut out for me now. Thanks for showing the way.

Michelle Lana
Nov 17, 2008 at 1:46 pm

HI Nick…thanks for the tutorial!…hey are you filipino?
I saw someone said “Kuya” – awesome!

Thanks again. Wonderful work.

Arwen
Nov 17, 2008 at 1:47 pm

Great visuals for the index page and design mock ups!
Thanks so much

Holly
Nov 17, 2008 at 4:35 pm

Great tutorial. I love the diagrams, nicely done and perfect for the designer novice or someone more experienced. The diagrams provide experienced people with a quick glance to understand it all at once. Thank you!

Fabryz
Nov 17, 2008 at 5:40 pm

Nice and simple, thanks =)

Nathan
Nov 17, 2008 at 7:46 pm

Heh, nice job! I have designed my WordPress theme from scratch and this is much easier. Great work!

Winmac
Nov 17, 2008 at 8:07 pm

Owe you lots dude. It makes the web what its supposed to be. Genuine information.

Aaron Irizarry
Nov 17, 2008 at 10:31 pm

Man thanks so much for this great tutorial. Also great pres at fowd. :)

Ariyo
Nov 17, 2008 at 11:52 pm

Thank you Nick. Nice job.

verdandi
Nov 18, 2008 at 1:26 am

Thanks for this very helpful tutorial (complete with pics and sample files). Is it the same if I wanted to create Blogger themes?

Nick La
Nov 18, 2008 at 2:59 am

@Michelle Lana – No, I’m not Filipino. I’m Chinese.

@verdandi – I’m not sure. I’ve never created a Blogger theme before.

IhateDesign
Nov 18, 2008 at 8:26 am

thanks for this tutorial, really easy, cheers!!

Raphael DDL
Nov 18, 2008 at 11:25 am

God bless your knowledge.
Man, that was the most easy-to-follow tutorial for WP i ever seen.

Keep up the wonderful work and designs :)

tmdesigner
Nov 18, 2008 at 12:09 pm

Finally a great and clean guide!! Thanks a lot!!

Soheil Alavi
Nov 18, 2008 at 12:32 pm

Awesome. Thanks for sharing your knowledge.

I just switched to mac and I was wonder how you guys are testing your websites on all major web browsers. As Mac Os x doesn’t have IE, how do you test it ?! I don’t feel comfortable to use boot camp or any virtual software to switch to windows and test my websites, When I was Windows user, I had IE tab on my Firefox so I was simply able to view my websites on IE. however, It would be great if you can show me your way, cause I searched a lot and I don’t like the methods. thanks

Roxanne
Nov 18, 2008 at 12:55 pm

Thank you for this tutorial. So much more easier to follow then the many tutorials over at wordpress.org!

@Soheil Alavi – You can download most major browsers to Mac OS X…just google each one for Mac and I’m sure you’ll find a link to download. At work, I use a Mac also and have Firefox, IE, Safari, and Opera downloaded on it for cross-browser compatibility. =D

Mircea Soaica
Nov 18, 2008 at 4:02 pm

Great tutorial man! Thank’s alot!

Dino
Nov 18, 2008 at 4:34 pm

@ Soheil Alavi

An awesome site for cross browser testing is: http://www.browsershots.org/

You can get a screenshot of how our theme looks on loads of browsers…

Anders
Nov 18, 2008 at 6:48 pm

I’ve been looking for a good tut on how to make my own wordpress theme and then you guys put up this sweet tutorial. Thanks!

joao
Nov 18, 2008 at 7:50 pm

Nice tutorial! Clear and concise. my blog

John Jacquay
Nov 18, 2008 at 8:36 pm

Thats Cool! Very Helpfull in building a custom wp theme

TheFrosty
Nov 18, 2008 at 9:37 pm

Good Tut!

Alvaris Falcon
Nov 18, 2008 at 10:51 pm

Incredible and easy to follow, my first successful WordPress theme must because of your tutorials!

Dan
Nov 19, 2008 at 4:48 am

Hey, thanks for this. I’ve made one or two custom wordpress themes before but I’ve always kind of winged it. This tutorial helped me better understand a lot of what I was doing.

Muiz FreFer
Nov 19, 2008 at 8:25 am

I wanna say its the best tutorial and the best guide to create wordpress theme , i did read many articles about how to create wordpress theme, and the screen shoots are very helpful.
thanks alot, cause its clear that you spent alot of time working on it .

Julez
Nov 19, 2008 at 9:47 am

I found this tutorial when I need it the most.
Thanks a lot, you’re a great person! Thanks for sharing this with all of us..

Kim
Nov 19, 2008 at 11:14 am

Super nice tutorial! This will be very usefull to explain how to build a wordpress theme!

flo
Nov 19, 2008 at 12:43 pm

If you can’t be bothered to transform your psd files into css and html, these guys do it for you at a bargain price. It’s worth checking out if your project has a decent budget:

http://psdtowordpress.com/

Robin
Nov 19, 2008 at 1:12 pm

cool/ Im going to translate this tutorial for my russian blog.)

KungfoowiZ
Nov 20, 2008 at 1:39 am

Just what we needed, thank you for sharing with us!

owain
Nov 20, 2008 at 3:59 am

This is a great series… Clear and concise

Thanks for sharing

http://www.icomcreative.com

David Smith
Nov 20, 2008 at 4:33 am

Really great. Can I ask you to include a section on how to add a portfolio section to run along side a blog on the same WordPress site?

Many thanks

Aggie
Nov 20, 2008 at 12:21 pm

thanks, this is great.. Thanks for sharing.. God bless You..

Andrea
Nov 20, 2008 at 5:17 pm

Thanks for sharing! May I translate theese posts in italian in the future?

Rian
Nov 20, 2008 at 7:28 pm

Hey. thnks men. It’s really helpfull.
but are this wp themes Widget ready and work with the wordpress default widgets??

Kadir GÜNAY
Nov 21, 2008 at 5:10 am

That’s amazing. So good article, tutorial what ever you say it :) thank you so much.

Sean
Nov 21, 2008 at 7:13 am

Will be building my first wordpress theme for a client starting next week – thanks for a very useful and detailed tutorial.

Kayla
Nov 21, 2008 at 12:48 pm

I’d just like to say thank you so much for your time and effort on this article! I can never seem to find a good WordPress tutorial that I can actually understand.

I’ve made WordPress themes before, but they never turned out the way I wanted. I knew I could do much better designing a webpage, just not as well with a WordPress theme worked into it. After this, I feel confident enough to try again, and make designs that I’m actually proud of!

Rijalul Fikri
Nov 21, 2008 at 1:05 pm

Cool, another wordpress guide. I haven’t visit this site for a long time. And now when I visited it back, it still has such a cool post :) Looking forward for your next update.

bweb
Nov 22, 2008 at 11:46 am

Something been looking for :)

Matt Hodder
Nov 22, 2008 at 5:16 pm

Great tutorial for beginners to wordpress themes!

Beckaworld
Nov 23, 2008 at 12:15 pm

Great tutorial, followed it and got great results :)

Kay
Nov 23, 2008 at 1:19 pm

Always wanted to get into WP themes but always found the tutorials complex, this has helped alot so no more excuses. I am going wordpress in a week or maybe two…

Paul
Nov 23, 2008 at 7:20 pm

You’ve done it again!!! … Your site is my favourite resource on the web! Thank You So Much!!!

miu
Nov 24, 2008 at 12:35 am

you are the champ!!
Thanks a lot!

paluh
Nov 24, 2008 at 12:52 pm

Very nice tutorial to learn how to implement wordpress custom theme, i will do it myself on next project. Thanks a million man

cynthia
Nov 24, 2008 at 1:36 pm

Just what I need! I’ve been thinking about building a custom template for my blog, but haven’t taken the time to do it – I’m going to print out your instructions and plug away.

Beckaworld
Nov 24, 2008 at 10:21 pm

Hey after hours and hours of trying to find out why my NextGen gallery wouldn’t work i found out that you left out “” which comes in the header page right before the “” tag. Hope that helps for those who had the same problem as me :)

http://www.beckaworld.com

Beckaworld
Nov 24, 2008 at 10:24 pm

for comments below it looks like tags dont work in comments so you left out the which comes right before the tag. Take out all the “+”s

Busby
Nov 25, 2008 at 12:00 am

Useful! Thanks!

SLD
Nov 25, 2008 at 7:12 am

Excellent tutorial! Thank you!
I think I’ve missed one step though… please help…
I can’t find the php page that calls the that has the “content_bg.gif” background image and the borders for the main container . Really excited to start working on this, but need clarification on this one step. Thanks so much!

SLD
Nov 25, 2008 at 7:19 am

sorry, I used HTML in the post below….
I can’t find the php page that calls the “div id=page” that has the “content_bg.gif” background image and the borders for the main container . How does WP know to use the container “page” with the “content_bg.gif” file?
Thanks for the help!

SLD
Nov 25, 2008 at 8:04 am

never mind, found it.. .. right in the header.
Thanks again for a great tutorial!!!

Julez
Nov 25, 2008 at 9:54 am

Help..I’m lost in “Recent Posts” and “Recent Comments”..

Julez
Nov 25, 2008 at 10:11 am

Oh right, I can always look at the theme demo, D’oh! :p. I love webdesignerwall :D

Eduardo
Nov 25, 2008 at 1:32 pm

simply amazing! =)

Fumin
Nov 25, 2008 at 4:58 pm

Wow, this is extremely useful to me.

I’ve been messing around with my own blog htttp://www.fuminyang.com by modifying existing template. This article gives a very good explanation of how things are pieced together.

Deni
Nov 25, 2008 at 7:57 pm

nice job friend. many thanks… you did a very useful thing for wordpress lover.
-regard-

simkamsan
Nov 25, 2008 at 10:03 pm

Woow great tutorials, thanks

Patrick Sweeney
Nov 26, 2008 at 12:15 am

Excellent job! This is the most compact I have seen this discussed.

Rodney
Nov 26, 2008 at 3:39 pm

You’ve done it again! Bravo! Although I’m a little more experienced with WordPress than I was a year ago, I sure do appreciate your contribution to reducing the learning curve for newcomers, and veterans who never quite figured out how to fully utilize the WP Codex. You’re my hero!

kiran
Nov 27, 2008 at 6:26 am

Great tutorial thanks you.

tzs
Nov 27, 2008 at 10:33 am

absolutely great tutorial

tzs
Nov 28, 2008 at 5:09 am

so, i forget it, can you write some sentences about “How to make dynamically sidebars” ?

Niels
Nov 28, 2008 at 9:36 am

Thanks! English is not my mother tongue, but this tutorial was clear enough for me to design my own wordpress theme!

william doyle
Nov 28, 2008 at 10:18 am

Excellent

thanks

http://www.willdoyle.co.uk

CAMBRIDGE WEB DESIGN
Nov 29, 2008 at 9:05 pm

Very helpful indeed – thanks a lot!

Raymond Selda
Dec 1, 2008 at 10:07 am

Thank you for putting up this tutorial. What I do is only create the HTML file of the index page. I then continue working on the other files after I converted the template to WordPress.

Rob Russo
Dec 1, 2008 at 11:08 am

Wow, this is great! Thanks so much for putting this together. I stumbled through my first attempt of getting a site/blog up using WordPress. But this tutorial will provide the much needed ‘sense’ when I put together Volume 2.

george
Dec 1, 2008 at 12:17 pm

I know it may sound repetitive, but try explicitly showing the result of each step. This will give the truly new to wordpress theming a solid foundation progress step to step.

Emily
Dec 1, 2008 at 3:25 pm

Thank you so much for this! I’ve been having a nightmare of a time with my WordPress – I made a custom layout about a year or so ago, then neglected my website completely. Now I’ve come back to it all, I can’t remember how I changed the theme in the first place. Oops =)

I’m not a total novice, but the WordPress Codex just baffles me. I’ll get to work with your handy guide straight away,

Rob
Dec 2, 2008 at 2:12 am

I cannot see the homepage in the theme selection and Im not sure what I did wrong. I followed everything to the tee and cannot see it. Please help.

Thanks in advance
Rob

matt
Dec 2, 2008 at 12:36 pm

This is incredibly comprehensive. Very well done. Thank you!

Ilya Radchenko
Dec 2, 2008 at 1:06 pm

WOW this is a great write up! So much information. I’m going to have to make a WordPress theme now. Since I already have several mock ups that will work pretty well. Thanks for this.

~Ilya

joao
Dec 2, 2008 at 5:18 pm

Wow, this is great! I stumbled through my first attempt of getting a site/blog up using WordPress.
my blog

Corey Schario
Dec 3, 2008 at 2:05 pm

Very well written. Thanks

Chad
Dec 3, 2008 at 2:14 pm

Thanks for the article. I’m curious, where do all these web design blogs get their content (articles + beautiful pictures)??? I’m lost how each blog has unique articles with all these related pictures. I’ve tried Googling about this, got nothing much but generic article repo sites with no pictures.

Rui
Dec 3, 2008 at 6:05 pm

Woow very nice tutorial. This will help us a lot!

Herramientas blog
Dec 4, 2008 at 8:16 pm

thanks, this is a good work, i translate this to my site :) thaks u

bebo music skins
Dec 5, 2008 at 5:04 pm

nice tut, ive tried making my own wp themes before, their really hard to do, when i get more time i will try your tutorial out.

thanks

Di
Dec 5, 2008 at 5:44 pm

As usual an amazing resource, and such a great contribution to all designers. Especially print graphic designers that have moved into web design and need tidbits to help materialise whats in their head…

Soh
Dec 5, 2008 at 11:54 pm

Holy crap, this is the best wordpress tutorial Ive seen by far, great job!

Sean
Dec 6, 2008 at 10:01 pm

Is there a printer friendly version somewhere? I printed to pdf and lots of stuff is getting cut off at the page breaks. Would really love to have a copy I could print to paper.

Thanks for the outstanding tutorial.

Nikko
Dec 9, 2008 at 3:38 am

Is this compatible with WordPress 2.7?

Frank Baier
Dec 9, 2008 at 7:09 pm

Hey Nick,
this page and this article are great.

I’ll write you an email about using
a few descriptions on a tutorial for a expression engine website.

EE is a little bit easier to handle without the php codings.

So, great job.

Keep up the very good work. Head’s up.

Greetings,
Frank

Nilou
Dec 10, 2008 at 2:06 am

another great job,
if you don’t mind ,would you have a tutorial for Drupal too.
Thank you

David Costales
Dec 10, 2008 at 8:21 am

Thanks, the best tutorial ever!

Zaxx
Dec 10, 2008 at 10:20 am

Thankyou very much for this great tutorial……

Niklas
Dec 11, 2008 at 9:29 am

Hey, i followed this tutorial. And it should be right, but when i try to preview/install the theme, it’s just white! What to do?

Heather
Dec 13, 2008 at 10:34 am

Very easy to follow, especially for someone like me who is new to WordPress! Thank you!

joao
Dec 13, 2008 at 1:29 pm

An amazing resource, and such a great contribution to all designers. Especially print graphic designers that have moved into web design and need tidbits to help materialise whats in their head…
my blog

fahad
Dec 13, 2008 at 1:49 pm

hey,

i was wondering if you could help. Basically ive been looking for a plugin for wordpress which would let me do advanced searched like on this site: :http://www.usedcartrader.co.uk
wordpress is pretty limited as you can only search by categories. Do you know any plugins that could do the job or do i need to get someone to code one for me? Thank you

vishalhd
Dec 14, 2008 at 7:53 am

thank you very much for all of this! You have no idea how long i’ve wanted to build a wordpress theme! the codex was really to hard to understand! Thanks again man :)

dr.nour
Dec 15, 2008 at 7:35 am

thank.. u & thank u & thank u

i donno what to say.. i’ve really got tired of taking someone theme .. and modifiy it to suit my ideas about my site..

i’m a graphic designer and web designer and animator..
but i donno this techniques, and i hate programming … so that for i need wordpress .. but i want my own design..

now i can do it by my self.. thank u again.. and i’ll show u my design later …

nomad-one
Dec 20, 2008 at 8:29 am

Wow nicely put together and the formatting makes it so easy to follow as well. I’m wondering if you’re interested in getting involved in a project called wpteacher.com which I hope to turn into a comprehensive wordpress learning space from beginner to advanced.

Cody Ward
Dec 20, 2008 at 2:06 pm

Wow, thanks for the detailed advice! Very helpful.

Melanie
Dec 20, 2008 at 10:07 pm

This was so easy to follow. I looked for hours for a tutorial and finally found this one. I’m up and running and feel confident about making custom themes. Thank You!

factotum218
Dec 21, 2008 at 9:59 pm

Great in depth tutorial. Being someone who is going from a few years of desktop publishing and pursuing and interest in web development I want to use something like WordPress or Joomla! not only as a tool to get results, but to also get a good understanding of how to work with php and javascript.
Eventually I would love to be someone fluent enough to consider myself a hobbyist AJAX developer. Who knows where I will really end up. Probably cold and alone still trying t decide whether I want to use Linux or Windows as my platform because I’m to old and still too broke to get a Mac. But I digress.

Great post, very informative.

Grégoire Noyelle
Dec 23, 2008 at 6:12 am

So great. Thanks you ! I just wonder how to improve this part of my work !
Grégoire

Jengly
Dec 26, 2008 at 3:55 am

THANK YOU!

abhijit
Dec 27, 2008 at 7:41 am

in the footer section, some images have the right side part chopped off. This makes it difficult to use them. I tried the footer.php file of the default theme, but there I found only the wp_footer() function called.

Roald André Pedersen
Dec 28, 2008 at 8:14 pm

I dont understand this. :( I am totally new to this, is this the most basic? :S

Felipe
Dec 29, 2008 at 10:23 pm

It encouraged me to make a wordpress theme.

And, I’d really made a wordpress theme.

Thank you!

ali
Dec 30, 2008 at 2:22 am

Very clear, l will try it soon

vncomet
Dec 30, 2008 at 1:04 pm

How to add banner ads to two sides that are outside the content table?

I have a question: How to add banner ads to two sides that are outside the content table.
Look at this blog: http://www.spunk-ransom.com/. This blog has 2 sides that are obviously outside its content table.

I don’t know if my question is clear. The thing I want is to add banner ads to such 2 sides. Here is a good example of what I mean: http://nhacvietplus.vietnamnet.vn/vn/index.aspx

Fiona
Jan 2, 2009 at 4:00 pm

You have encouraged me to make my own WordPress them. Thank you so much for the details tutorial.

Frank Barrera Jr
Jan 5, 2009 at 12:42 am

Thanks for the detailed information! Let’s see if I can do it!

Ofer
Jan 7, 2009 at 5:24 pm

EXACTLY what I needed!! Thank you!

Dhane
Jan 8, 2009 at 3:11 pm

Great post! it definitely helps.

Otong
Jan 8, 2009 at 10:46 pm

I dont understand, how the PSD coud be generated to WP themes?

Skracanie linków
Jan 11, 2009 at 7:37 pm

It takes some (read long) time but it’s worth it.

Andrew
Jan 11, 2009 at 7:43 pm

Brilliant tutorial and excellent website.

How do you make the left date tabs in your template at the side of each days post?

Is this a plugin or just in your custom template?

Respect!

Jan
Jan 12, 2009 at 3:56 am

How do you assign titles to blog post URLs instead of just have them display post numbers?

alberto
Jan 14, 2009 at 12:54 am

Great post! I used this tutorial to create my custom theme and didn’t have any troubles at all.
Thanks for this great tutorial!

ana
Jan 14, 2009 at 6:41 pm

I still have one question, after modifying and creating my own theme will it be displayed or do i have to apply for the custom css upgrade for them to be viewed?, thanks for the helpful guide

挖客
Jan 14, 2009 at 8:43 pm

很详细的资料
Thanks

Joe
Jan 15, 2009 at 12:19 pm

After changing the commented author info in the css file, it doesn’t show the theme thumbnail in the admin/manage theme area anymore. What can be done to change this so it can be viewed?

Marco
Jan 16, 2009 at 2:38 am

What HTML editor do you use? Which one is the best to use? On a Mac, i mean.
Great post! Thanks..

Jason
Jan 16, 2009 at 11:53 am

Great tutorial, but just one thing is being left out I think. The CSS! How does that come into play when you build your own theme?

Karen Long
Jan 16, 2009 at 2:53 pm

Need help understanding how the .psd files are used in WordPress for my custom theme, can you point me in the right direction?

Manuel
Jan 17, 2009 at 2:42 am

Would love to see how to implement a free picture gallery with a template.
I got templates enough but getting it to work smoothly and linking stuff is quite hard for me

Jay Versluis
Jan 19, 2009 at 1:14 am

Jason,

in this example, the CSS is only used to tell WordPress that there’s a new theme which can be activated. It doesn’t contribute to the layout (in this case), but it important because WordPress the comments (i.e. Author, Theme Title, etc).

When you create your own templates, the CSS can influence how your text is formatted (i.e. font, colour, etc).

Jason
Jan 19, 2009 at 2:50 pm

Great article.
I’m currently building a custom WordPress install to a designers spec, and this is proving to be incredibly easy…

aşk
Jan 19, 2009 at 6:18 pm

wery good http://www.asklarinenguzeli.net/index.php

Gary Davison
Jan 20, 2009 at 8:07 am

Great tutorial, can’t tell you how much this help me. I’m having a little issue with my archive and category pages but i’m sure i’ll work it out.

Thanks

qinglou
Jan 20, 2009 at 11:40 pm

and so good ,向你学习了哈

prasanth
Jan 21, 2009 at 6:54 am

The explanation is very good. it is easy to understand to the members who are the beginners and experts in multimedia and web designing, dot net and so on. they can easily understand by coding the design.

Anyway Congrats to you for your explanation.
prasanth

jared
Jan 22, 2009 at 3:56 pm

Can you embed flash into the wordpress theme?

Robert Fauver
Jan 23, 2009 at 5:58 am

Simple and easy to read. Perfect for a WordPress beginner.

love aŞk SevGi
Jan 24, 2009 at 1:54 pm

Create SMF ( Simple Machines Forum ) theme?

love aŞk SevGi
Jan 24, 2009 at 1:54 pm

Create SMF ( Simple Machines Forum ) theme?

http://www.asklarinenguzeli.net/index.php

maggie
Jan 25, 2009 at 10:57 pm

thank you so much for this. i felt like a moron trying to read other tutorials on custom wordpress themes. this was really easy to understand and i think i get it now.. :D

Adam
Jan 29, 2009 at 11:31 am

OMG How awesome is this?! You rock Nick. This helps out so much. I’ve been customizing “already made” free themes and I wanted so badly to create my own from scratch. Thanks so much for this tutorial!!! Beautiful site btw!

link building service
Jan 29, 2009 at 3:54 pm

The explanation is very good. it is easy to understand to the members who are the beginners and experts in multimedia and web designing

Steve
Feb 2, 2009 at 5:10 pm

I wanted to echo Jared’s question:
“Can you embed flash into the wordpress theme?”

If so, is anything in particular required? (paid WP account, etc)

I’m hoping to have flash navigation like this: http://www.flashden.net/item/bouncy-nav/4555

dom
Feb 3, 2009 at 11:12 am

shame you don’t show the entire code for the plugin, i can’t find it anywhere , the coments’s plugin in the theme folder? i don’t think so

hahaha
Feb 7, 2009 at 6:45 am

wuuiiiih! mauuut

fitt
Feb 8, 2009 at 1:27 am

This blog helped me a lot for building my own theme to my site. thank you very much.

Ralph
Feb 8, 2009 at 3:41 am

Perfect tutorial for beginners like me. Thank you. Ralph

Sunil
Feb 9, 2009 at 11:59 am

Thanks for those details. I am a newbie with designing WP. I have been flipping 100s of sites to get info and found many. Yours is ranked among the best. Thanks a lot.. Will be writing an article on where to get the best articles related to WP design. URs will be added for the vast info it provides. thanks a lot

Finn
Feb 11, 2009 at 10:49 pm

Great tutorial mate, couldn’t be better. We need more people like you!

MEMA
Feb 12, 2009 at 7:48 am

hi there ,

i have one Q, when u finish ur works on Photoshop, u save the images as what u explained here by ( save for web…. ) and then u choose ( imagesand HTML ) from the buttom. where can i get CSS regarding to the picture here
https://webdesignerwall.mystagingwebsite.com/wp-content/uploads/2008/11/html-css-template.gif

i will be happy to find the answar

Greg
Feb 12, 2009 at 10:05 pm

great post!

Fondos Gratis
Feb 13, 2009 at 6:23 pm

excelent, great tutorial, thanks for sharing!

Fernanda Gomez
Feb 13, 2009 at 7:54 pm

Excellent, great tutorial and in great details. Thanks!

jake
Feb 15, 2009 at 7:22 pm

Love the tutorial, and I got almost everything to work, but I am having trouble wit the side bar. Because when I go to widgets it says that i do not have any sidebars defined. So i not sure what needs to be done, and I wanted to add a blogroll which is a widget,

this is clowning!
Feb 17, 2009 at 2:10 pm

one of the best tutorial on wp ive seen! you rock!!!

FIlip
Feb 19, 2009 at 6:12 am

Hi. On the php codes for post-comments etc.
would be very helpfull if you could POST THE CODE instead of just cutting it out of frame suddenly

e
Feb 20, 2009 at 7:03 am

Thanks Ralph

Dario Gutierrez
Feb 20, 2009 at 6:11 pm

Awesome tutorial! Thanks for sharing!

Concertina
Feb 24, 2009 at 9:26 am

Beautiful site!

GA
Feb 24, 2009 at 12:21 pm

I wanted to make the blog mirror our site. I got the header and footer to work, but the content is just plane text. How I customize the content now without messing with the appearance

millard
Feb 25, 2009 at 2:20 pm

This is amazing. A complete custom job without really knowing PHP but the basics. Thanks for the tutorial.

masro3
Feb 27, 2009 at 11:46 am

Perfect, it is just perfect explanation for word press .
Best tutorial so far.
Hats off for you

Saurabh Nagar
Mar 1, 2009 at 8:35 am

Wonderful tutorial.
Cheers!

Urdu Sms
Mar 3, 2009 at 4:48 am

Great………… thanks man………………………………………..

ahmed
Mar 4, 2009 at 4:29 am

thx man
u r awesome
iam ahmed from egypt

masarif
Mar 4, 2009 at 7:23 am

Mumtaazz!!!
Thx…

Ray
Mar 4, 2009 at 4:50 pm

This tut itself is a piece of art.

Crazy XHTML
Mar 6, 2009 at 11:01 am

:) Thanks

as always – simple and easy for understanding….

Thanks, again

Nuno
Mar 8, 2009 at 6:28 pm

Congratulations!!
Your work is amazing… Thanks for this post..

Abeon Tech
Mar 9, 2009 at 6:33 pm

Seems like a very useful and in depth article.
I have been trying to get my head around WP template creation…. This has helped a lot thanks :)

evan
Mar 11, 2009 at 9:53 pm

I can’t find the searchform.php file in the default folder…

There’s a search.php in there but no searchform.php???

John
Mar 15, 2009 at 2:52 pm

can you talk a little bit more about the psd2html process. When you are done with the design in photoshop how do you go about cutting the slices. Do you use image ready??

Peter Winther
Mar 17, 2009 at 10:20 am

I just bought “WordPress Theme Design” by Tessa Blakeley Silver, and basicaly all I got, can be found in this tutorial…
I wish I hadn’t spend all that money (300 DKR=60$)
Nice work :-)

wordpress themes designer
Mar 18, 2009 at 9:14 am

thank you for this thread, i am going to do some tests on my wordpress based website , and i will get back to you
i already printed this article and downloaded the files, ready to try
hope it will work

Thank you

Jose Luis Pinete
Mar 18, 2009 at 11:58 am

Excellent, I looking for something like this. I want to create my own theme.

tnx

Jen
Mar 19, 2009 at 5:39 pm

Hi, I’ve never done this before. Does the Blog need to be the homepage? Or can it be another page on your website?

Dan
Mar 20, 2009 at 2:17 pm

If you are hosting the site yourself, or have purchased hosting from a service like GoDaddy, you can put the site in any directory. By default, your wordpress site will be http://www.yoursite.com/wordpress. If you dump the contents of this folder into the web root folder and adjust the settings in wordpress, your wordpress site will be http://www.yoursite.com. I am hosting my site on my own computer which I set up as a Ubuntu server.

3may
Mar 21, 2009 at 3:18 pm

nice articel….
thanks very much

web designer london
Mar 24, 2009 at 3:05 am

in my opinion , it is easier to start designing the theme from the classic theme , not from the defult one.

badluckz
Mar 26, 2009 at 10:42 am

Nice guide!! helped me a lot…thanks!

kevinlogic
Mar 30, 2009 at 4:41 pm

Great article! I have been looking around at other similar guides and this is one of the better ones. It helped me greatly in converting one of my existing layouts to a theme. Thanks.

sourabh shankar
Apr 3, 2009 at 5:47 am

thanx for the article buddy. u nailed it so simply. although i know php inside out but didn’t had any experience in building custom themes for wordpress. after reading ur post, i was able to create my own theme for wordpress in just 1hr. thanx again :)

Section09
Apr 3, 2009 at 10:22 am

This tut is great! I had a good time going through and I learned quite a bit. I even figured out where to add the missing pieces that you didnt include for alignment and such. The only thing is that I’m still not sure what php goes where and why. I look at the wordpress faqs for the php and I feel like I’m trying to read a completely foreign language :(

I guess I need more practice but this was my first try, thanks for this!

aty
Apr 5, 2009 at 2:23 am

excellent job. i really looking for this

Ollierog
Apr 9, 2009 at 4:51 am

Supremely helpful tutorial thanks.

él-woods
Apr 9, 2009 at 9:33 am

Has anyone looked at “Web Designer London” ‘s website? (comment #212) Its a complete rip of this site!!! haha! Well “W.D.L.” in my opinion its easier for you to just rip this theme than design it from the classic one like you claim! hahahahaha

Gavin
Apr 16, 2009 at 4:45 pm

@219 el-woods It’s a free theme from Smashing Magazine.

Thanks for the tutorial.

AlexClarke
Apr 22, 2009 at 1:30 am

Great post thank you!

DetroitDeziner
Apr 24, 2009 at 11:43 am

Hello,

This is a great series of posts. However, I have downloading the demo.zip file 6 times and it will not unzip. Is there a different copy of the file available?

Thanks.

drjord
Apr 24, 2009 at 9:36 pm

“Although the Codex site provides very good documentations on how to create a theme, but I find it too complicated for a beginner ….” and maybe for others.

Thanks for providing such a common sense approach to theme development!

Camilla
Apr 25, 2009 at 3:47 pm

I don’t understand; I’ve followed all the steps to the letter yet my admin panel declares the theme broken as the ‘Template is Missing’. What could this be? Any help would be much appreciated…

hma66
Apr 29, 2009 at 3:52 am

Thank you for the tutorial on creating custom theme design for WordPress. Unfortunately, many parts of the tutorial went over my head. So, could not get much benefit.

Anyways, thanks for the effort.

hma66
Apr 29, 2009 at 3:54 am

This tutorial is maby, not for complete beginners.

Brian
May 3, 2009 at 7:00 am

I am a theme designer and I would say that the tutorial is not for the beginners. Overall, it is a good tutorial :)

nick
May 7, 2009 at 3:05 am

u is the best.

great illustrated instructions! this is very well presented.

aşk
May 12, 2009 at 12:13 pm

Thank You..

Dan Reich
May 20, 2009 at 8:06 am

This is a great tutorial. Takes time to write these kind of posts and this is awesome.

inBetweenFiction
May 20, 2009 at 4:49 pm

THANK YOU LEARNED A LOT!!!

LOVE YOUR SITE!

dr.nour
May 22, 2009 at 7:01 am

i couldn’t believe that i can do that..
u opened a new way to me…

thx man
peace be upon you

Alberto
May 22, 2009 at 12:22 pm

real great stuff…. as all the contents of your site. Only one thing, I can’t open your demo zip file… I downloaded many times, but nope it does not work.
Anyway, thanks for all you teach us.
Love your site!!!

John
May 23, 2009 at 4:43 pm

I sincerely thank you for taking the time to write this tutorial.

John
May 23, 2009 at 4:50 pm

This maybe not for complete beginners but it’s easy enough for a complete beginner to understand and thankfully we have people/sites like this one who are kind enough to share their skills so complete beginners can start somewhere. Bruce Lee was forbidden to teach Kung Fu but he taught whoever wants to learn. Web Designer Wall is my Bruce Lee

Articles Book
May 25, 2009 at 3:52 am

Great Work. People are more interested for this type of articles
Thanks you very much webdesignerwall………………….

WebSD
May 27, 2009 at 12:03 am

A great tutorial and look forward to more! The code examples are amazing

wpdigger
May 27, 2009 at 2:21 am

A great tutorial and look forward to more!

Great Work. People are more interested for this type of articles
Thanks again for this…

Clark Smith
May 27, 2009 at 12:03 pm

Very detailed instructions on making a custom theme, thanks for the help. Definitely bookmarking the site for future reference!

Robin Thomas
May 28, 2009 at 8:20 am

Nice post… Thank you so much.

wordpress integration
May 29, 2009 at 7:13 am

Your post is really very helpful to building custom WP theme

Ricky
May 31, 2009 at 10:39 pm

This has been REALLY useful for me. I am an oldschool web designer that use HTML 4.0 and am so lost in CSS/AJAX etc. Really gives some good understanding on how to start designing with these new protocols.

Watin
Jun 1, 2009 at 12:56 am

Thanks for the great tutorial.

template
Jun 3, 2009 at 2:56 pm

Excellent, thanks!

Mohammed
Jun 4, 2009 at 7:27 am

great and very usefull tutorial!!

Thanks a lot man

spyece
Jun 7, 2009 at 10:46 am

Thanks a lot for this :) i am learning to code wordpress theme, this tutorial of yours is gonna help me a lot for sure :)

Chris
Jun 8, 2009 at 7:25 pm

This would work great with the demo psd files, etc.

W3Avenue Team
Jun 11, 2009 at 8:57 pm

Latest version of WordPress has been released. in addition to over 790 bugs fixes, there are improvements in themes, widgets, taxonomies, and overall speed. W3Avenue has compiled a list of resources for WordPress developers that will help them quickly upgrade their themes or plugins to accommodate latest features.

http://www.w3avenue.com/2009/06/12/wordpress-28-resources-for-developers/

Lazarus
Jun 14, 2009 at 2:11 pm

Yes excellent stuff – im noob to this but I forsee many hours being spent trying to do this! Thanx!

foo
Jun 24, 2009 at 4:36 am

great tutorial, really open my eyes on how to make my own theme.Thanks!!

Prox
Jun 29, 2009 at 6:22 pm

Thanks a lot for this tutorial, It was very useful to me, it helped me develop my wordpress theme take a look at : ProxBlog and it showed me how simple it is to turn a static Html template to a WordPress theme.

Thanks
Prox

Trevor
Jun 30, 2009 at 9:47 am

Just wondering if you’ve ever built a child theme based on something like thematic. Any thoughts on if that’s the way to go?

Antonis
Jul 2, 2009 at 2:41 am

Hi. I already have my website set u pand would simply like to copy my existing template so that it can be used on the wordpress pages. can anybody help with this?

Antonis
Jul 2, 2009 at 4:35 am

Hi. I am trying to use my html template of my existing website in order to create a wordpress template. how can this be done?

Pablo Fierro
Jul 2, 2009 at 10:17 am

Antonis, this tutorial explains step by step on how to do so, All you need to do is to split the Html Code into the php files, and insert the php code, it is really simple.

Giancarlo
Jul 2, 2009 at 4:30 pm

The tutorial is great! I’m working on it right now but I’ve seem to catch a snag. The sidebar isn’t on the side, it’s moved under the posts and there’s no background colour to it either. I didn’t touch the CSS file, and I’ve copied everything and gone over all the code again and again and I’m not quite sure why it’s not working out. Any ideas?
Thank you!

asdgasdg
Jul 4, 2009 at 11:16 am

dfgasdfadf

Sam
Jul 8, 2009 at 12:08 pm

I built my own theme with this useful tutorial, but it just cant load any of the java scripts used by different plugins. I couldn’t run nextGEN plugin, even on the sample glossyblue theme. Any suggestion?

mh
Jul 12, 2009 at 2:01 pm

nhnhnnhnhnh
zjz
jzjzjzjz

Hans
Jul 14, 2009 at 8:56 am

Thanks for this great tutorial. In the process of creating my own design I’m stuck between the Photoshop psd and the making of a static HTML+CSS template. I’ve looked at your example psd but there seem to be no ‘slices’. Slices is the only way to make a html page in Photoshop, or isn’t it? What is the procedure from the PSD file to the static HTML+CSS template? Please help.

Saano Vai
Jul 16, 2009 at 2:52 pm

Great Tutorial
Thanks for this great resource!!!
:))

AlexonDrums
Jul 19, 2009 at 9:27 am

Amazing! Thank you so much. I’ve recently been designing a new WP blog (first time), and very much looking forward to creating my own theme, as opposed to blindly hacking an existing one!

pankaj
Jul 19, 2009 at 11:12 pm

well thanks for this tutorials but if i want to create a theme which have many images then what should i do. i followed the above procedure but images does not appears on the theme, only the content appears?

Kevin
Jul 20, 2009 at 1:16 pm

Great tutorial, many thanks.

kim
Jul 20, 2009 at 1:56 pm

Where do I find the “admin panel”? See below
“Now, login to your admin panel, write a new page, title it Archives. On the Page Template dropdown, select Archives.”

Mike
Jul 21, 2009 at 4:24 pm

Hey, Can you possibly record a tutorial of this for youtube? That would help me a lot. Right now I program things by hand, but your tutorial looks amazing, but it’s still been a little daunting venturing into wordpress world – I like the idea of creating a custom theme, because that’s what everyone and their mom wants these days, and thank you for your help and instructions!!!

Vagabond
Jul 30, 2009 at 9:57 am

Greeeeeat tutorial… many thanks!

art
Jul 30, 2009 at 5:55 pm

thank you so much!
your detailed explanation helped me create my first blog!

Cristina
Aug 3, 2009 at 1:13 pm

This page I am looking at is so pleasing! Great work! Thanks for the tutorial.

Bret
Aug 4, 2009 at 3:41 pm

This a great tutorial. Your descriptions are clear and helpful. I’m finally getting my head around how to go from layered comp (though I work in fireworks, not photoshop) to working WP blog. Thanks for taking the time to share your knowledge. word!

Create a blog site
Aug 5, 2009 at 8:03 pm

Excellent tutorial. I do tutorials myself so I know a good one when I see one. Thanks.

liz
Aug 6, 2009 at 9:58 pm

thanks so much for this awesome tutorial! although i could have figured things out myself, i didn’t have much time (about an hour) to turn around the code. so, i turned to google and up popped your fabulous tutorial. it was VERY easy to follow and well-illustrated!

FourPx
Aug 7, 2009 at 4:39 am

Hi,

You made to look very easy dude. I feel like i got the right info i was looking for. Thanks! No wonder this many ppl have posted comments on this blog.

FourPx

cennetevi
Aug 8, 2009 at 6:14 am

Thank =)=)=) you http://www.cennet.gen.tr

ShaQuiB
Aug 8, 2009 at 6:25 am

Thanks a lot…
It works!!!
It is really helpful…
Thanks again…
[email protected]

leebaz
Aug 10, 2009 at 10:16 am

Hi, Thanks for this great tutorial that we’ve used as the basis for our new band website.

I’me trying to get the little comment count bubbles to work on the right hand side of the post title – could you let me know what php or wordpress code to use to get that to display?

Many thanks!
Lee

Tung
Aug 11, 2009 at 4:18 am

Thanks! cool tip..

chaitrax
Aug 12, 2009 at 7:26 am

very nice tutorial, thumbs up.

Learning WP
Aug 13, 2009 at 2:24 pm

I’m fairly new to WP and the general information out there seems to be more confusing than it needs to be. You have a gift for making things simple and easy to understand. Can’t wait to try it. I will be camping out at your site. I checked out your other sites and you are an AMAZING designer!

gooddell
Aug 13, 2009 at 11:14 pm

thanks for tutorial..

Robert van Hoesel
Aug 19, 2009 at 8:03 am

Great tut. Will use it fore sure!

moon_h
Aug 20, 2009 at 3:06 pm

Great tut! This is exactly what I was looking for to understand the structure of WP. However, how about something a little more customized? For instance, what if you want to display a ‘featured post’ on top and then underneathe it, have the column split in two, for stuff like ‘news’ or ‘deals’? Is this pretty complicated? How can I go about doing something like this?

Julie Hamilton
Aug 20, 2009 at 4:15 pm

These instructions worked beautifully, thanks! With regard to the appearance of the post entry, what bit of code could I add to the CSS in order to align the tops of my text and image inserted? Currently the text is posting below the image. I’ve tried experimenting with .entry w/o luck.

Also, is there a plugin or tutorial you would recommend for greater post layout control? Thank you

Suneel
Aug 25, 2009 at 12:15 pm

Absolute kudos for writing this up. The step wise structure did help me a lot in making a dummy theme. I wish to incorporate a PSD I have to be applicable to Thesis.

Pls share how v can do that. Thanks a ton again.

klyder
Aug 28, 2009 at 1:47 pm

la verdad, muchisimas gracias, espero que puedas leer esto :P

mealdy
Sep 2, 2009 at 4:08 am

I’ve just translated ur article to chinese, and I find so much that I have to learn, anyway, many many thanks for ur great knowledge! :)

Peter
Sep 3, 2009 at 8:27 am

A great article. I was ready to give up on using wordpress as a cms when I found this post. Needless to say I will be using wordpress for a cms from now on.

Thanks for taking the time to write this. Lots of appreciation and greetings from Amsterdam.

Aoobi
Sep 4, 2009 at 7:23 pm

Thanks! cool tip..

student101
Sep 8, 2009 at 11:02 pm

demo.zip doesn’t work..its says:unexpected end of achieve

bagsin
Sep 10, 2009 at 8:01 pm

Nice and clear steps

Chrisseh
Sep 14, 2009 at 5:16 pm

Great tutorial!

I’m having the same problem as student101 with all the files I’ve attempted to download here. It doesn’t seem to want to download the full file, it stops at anywhere between 50-90%. :[

Marko Manninen
Sep 15, 2009 at 1:26 am

Great tutorial, basic new theme is what I need to do next and this helps a lot.

If you need tips how to use single wordpress codebase for multiple sites and domains for easier maintainance, please see: http://www.randapp.com/blog/how-to-use-single-wordpress-codebase-for-multiple-sites

Tech Frog
Sep 16, 2009 at 11:49 am

Absolutely Amazing. The simplest and easy to understand tutorial on the web. Sure to help a budding web designer like me. :)

Nick
Sep 19, 2009 at 12:42 am

Your guide is just what I’ve been looking for. It makes it all so simple. I’ve searched for weeks looking for something like this. I’m just about to start my site now (locally for now but shouldn’t be long before I upload following these instruction’s).

Arun
Sep 19, 2009 at 3:58 am

wow i like it..
really kool tips…….

Raman
Sep 20, 2009 at 6:43 pm

Thanks. it;’s cool stuff. I want to learn all that.

Cyrus
Sep 21, 2009 at 9:27 am

Great , Building Custom WordPress Theme
Great article. CSS saved web design
Cyrus
Visit http://www.psdtoxhtmlcoder.com

afzal
Sep 25, 2009 at 9:59 am

demo.zip doesn’t work..its says:unexpected end of achieve

Honeyball
Sep 28, 2009 at 4:28 pm

I really really love love love this site! All I know (okay not ALL…) about Webdesign I know from this webside. Thanks thanks thanks! And know I start my first wordpress blog. How amazing! First it was easy, then I had a stupid problem to show a image in my sidebar, then google fix it and now I’m happy. I used the glossyblue theme code at a base for the first little blog… But I think… now I understand that codething and I can start “free”.
I did my first webdesignsteps with changing myblog.de themes… it’s way more easy… but it’s similar! ;D

Maybe: Sorry for my English! It’s what a German can speak. (#_#)
And: Danke danke danke danke! 8D

tj
Oct 5, 2009 at 1:13 pm

i’m getting an error page when I open the readme.html and click on the install link. I have no idea what I’m doing wrong. And the url “http://localhost:8888/mysite/wp-admin/install.php” does not work. It says page not found. I renamed the config file and changed the info(I think??).I have somehow set up managed site in dreamweaver that only loads the WAMP page, none of the wordpress files. Maybe a pre-tutorial to get started? Haven’t even gotten to use your example to finish the rest of this. Thanks.

MtnBlgn
Oct 5, 2009 at 4:20 pm

really usefull and great web site. I love this web site. congratulation and thank you.

WpExplorer
Oct 24, 2009 at 1:34 am

Very nice guide. Simple, Easy to follow and just plain out awesome.

John Roney
Oct 30, 2009 at 4:41 pm

I just wanted to let you know that this is one of the best blog posts I’ve ever seen. I’m not a designer, but my wife is, and I just sent her your post here because we are keen to learn how to build custom blogs. This is a home-run in my opinion,. Thanks much! God bless! -John

Mike
Oct 31, 2009 at 5:08 am

Really nice tuts

panel radyatör
Nov 5, 2009 at 8:42 am

i search how i can make wp templates but really i found thanks

Deepak
Nov 10, 2009 at 6:03 am

good……….for freshers

Andhrus
Nov 11, 2009 at 3:38 pm

Wow! Very interesting post! you are a very good teacher…

Tiny Giant Studios
Nov 13, 2009 at 7:15 am

Point # 10: Sorting out the footers has some incomplete instructions regarding what should be removed from index.html. Also, the images used has been cropped thereby not showing everything.

I had to go into the final version of your accompanies theme to find out what should be in there – it’s a bit unclear in the instructions above and might lead one helluva confusion :)

doh12345
Nov 15, 2009 at 11:46 pm

nice tut, thank you

John
Nov 19, 2009 at 1:32 am

Thanks for this. Is there a application to use that would help like dream weaver?

Mizuro
Dec 1, 2009 at 10:47 pm

When I try to download the demo.zip the file somehow doesn’t work when I try to unzip it with winzip.

pyemachineq
Dec 2, 2009 at 6:52 pm

excellent… I am under the pump from a client to make a site using wordpress. I have never used and bang I have the makings of a site. thanks so much

Devin Walker
Dec 4, 2009 at 9:37 pm

Extremely valuable post, thanks so much.

Dlocc

Jordan
Dec 7, 2009 at 1:18 am

wow great tutorials

Kabir
Dec 7, 2009 at 2:29 pm

Excellent tutorials. It would help me lot. thanks to the author

Dbosch
Dec 9, 2009 at 5:29 pm

thanks for tutorial, only thing I’m going to point out is what every tutorial lacks
– LOGIC BEHIND.
They all say: here’s this here’s that and here’s my 500 line CSS, now make your own or copy mine..
I am not asking to hold my hand while writing CSS for static page but for example telling us if WordPress has anything reserved in classes for php to call so we don’t change names and fail tha app, something you kept in mind while writing css and something we might not do. What are the must dos in CSS for WP to work and where can we improvise.
Thanks and your blog looks incredibly cozy, i don’t wanna leave it ever , hehe.

LONG
Dec 11, 2009 at 1:23 am

Thank you. Wonderfull. Article is very good.

fjo
Dec 14, 2009 at 4:31 am

Hi great article, however I fallowed your tutorial and made my theme and the problem is that WP-Table Reloaded plugin http://tobias.baethge.com/wordpress-plugins/wp-table-reloaded-english/ is not working properly neither in my or your theme – Glossy blue.
Is there something specific I have to do to make my theme work properly with any plugin.

Thank you!

fjo
Dec 14, 2009 at 4:55 am

Oh found a simple soulution – included these functions:
in header and in footer and it works now!

Very good tutorial anyways :)

Thanks!

panel radyatör
Dec 15, 2009 at 8:15 am

nice tutorial i will translate my language

Ronna
Dec 19, 2009 at 5:58 am

Hey, nice post. :) Thanks for the interesting info.

Z
Dec 20, 2009 at 11:33 pm

This was an excellent explanation although I still have some more HTML learning to do.

Z
Dec 20, 2009 at 11:34 pm

Very nice tutorial, It helped me out a good amount.

panel radyatör
Dec 22, 2009 at 8:26 am

wonderful tut thanks bro

SEO Sheffield
Dec 23, 2009 at 3:10 pm

Great post as a starting point for WP themes noobs, loved it an I’ll be posting on Twitter for sure!

Mark

Thomas Roesen
Dec 27, 2009 at 3:39 am

Thank you for an excellent tutorial!

Kind regards
Thomas, Denmark

Gaston Suarez Duek
Dec 28, 2009 at 1:57 pm

Great great great! Very simple way to create a theme. I would like to translate the post to spanish and post it on my blog, if u don’t mind!
Thx again!

Akhtar Azaad
Dec 30, 2009 at 5:57 am

it’s very useful effort. its very helpful for anyone how want to learn Word press.

Ray123
Jan 2, 2010 at 12:23 am

Hey, this is a great tutorial. But while following, i encountered a problem. At step 14, i applied the files to my wordpress and it comes out blank. Do i have to use all the components? Such as archives to title descriptions?

Terry of Astoria
Jan 4, 2010 at 4:03 am

I am excited about trying this method. You have illuminated my consciousness. How can I say it? Like this – You may be a wordpress bodhisattva. I’m going to try this method. Thank you for sharing your process. It’s like you can convert html to wordpress. I don’t know if I’ll actually install LAMP or whatever on my personal computer and run wordpress locally but instead maybe I’ll just install a separate instance of wordpress on my web host as a “sandbox” so I can test everything from there on an identical site before “going live”!

Abhra Banerjee
Jan 5, 2010 at 6:23 am

I found your posting very interesting. Thanks for your tutorial.

vincentdresses
Jan 6, 2010 at 1:42 am

喜欢你们的设计与技术,常来看看

barbara o
Jan 10, 2010 at 1:25 am

Thank you very much. I’ve looked at a couple of other tutorials, and this one is truly a fast way to get a site up and includes a lot of critical to success info.

Frank
Jan 14, 2010 at 4:03 pm

Very nice tutorial! Used it 2 times now, beginning to understand. But I think you are forgetting a “” tag. (Without the space between the < and the ?. It solved some problems for me with the stylesheets of external plugins and javascript.

Nate
Jan 15, 2010 at 10:56 am

I’m wondering why you didn’t go into any detail with the searchform.php and comments.php files… I glossed over step 5 (pun intended), so I retardedly wasted a lot of time trying to figure out what I did wrong until I finally opened both folders and just copied over whatever files weren’t in my folder. Then it worked, of course.

Muhammad Irfan Mansha
Jan 22, 2010 at 6:10 am

This is the best tutorial on WordPress theme writing ever i had read. Its really good article. Covers every basic detail and its very easy to understand.

Well done.

Muhammad Irfan Mansha

Burhanuddin
Jan 22, 2010 at 6:39 am

Damn ! This is great .. step by step with details

Thumbs Up for this post. many thanks bro !

Joe R
Jan 22, 2010 at 9:55 am

Excellent post. Probably the most complete post on this subject that I have found so far and I have spent too much time looking for something like this :) Thanks for the effort.

Alex
Jan 22, 2010 at 1:44 pm

Thank you, this will prove very helpful.

amole
Jan 27, 2010 at 11:14 am

Excellent Post!

Paulraj
Jan 30, 2010 at 9:24 am

thanks. very interesting post !!

DreamHouse
Jan 31, 2010 at 2:39 pm

Wow! you made it easier. This is a really big help for beginners like me.
thanks

slit
Feb 1, 2010 at 5:14 am

Nice Tutorial. Is it possible to get it in grman?
Slit

seocontentgirl
Feb 3, 2010 at 6:32 pm

Now that’s what I am talking about, this is one of the best tutorials on learning to build a custom wordpress theme yet! Great work.

Mina
Feb 4, 2010 at 6:48 am

i like lay out of this site

Rob
Feb 4, 2010 at 3:20 pm

Hey great tut, one issue I’m having though and I’m hoping you can shed some light. I’ve developed the html and css and it works flawlessly as it is.

One I start breaking it apart (header, nav, sidebar, footer, etc) it breaks. It appears that the isn’t doing what it needs to do.

I’ve read around and I’m not sure if I need to define that in any way to look for header.php, footer.php, etc. But as it is I’m stuck and frustrated.

Any help would be awesome! Thanks and great work!

Will Hull
Feb 5, 2010 at 12:15 pm

Thank you so much for this tutorial. It helped break things down so much more than much of what is out there. I just completed coding for my blog design. I invite you to check it out. It’s all thanks to you.
http://willhull.com/blog

Thank you, thank you, thank you!

Paarth
Feb 10, 2010 at 7:17 am

Great post, very helpful steps in creating custom wordpress themes.

iamoffended
Feb 14, 2010 at 6:29 am

Thanks, this is the most helpful tut I’ve found. How would you name the sidebar if you wanted a 3 column layeout? I.e. Sidebar left, index, sidebar right? Header, footer? Thanks again for this

crewof1
Feb 14, 2010 at 2:21 pm

I’m also trying to figure out how to make a 3-column layout, like the recent comment below.

keith
Feb 16, 2010 at 3:13 am

cam you please help me with my sit .i want to improve the look.i an a novice

iamoffended
Feb 16, 2010 at 6:24 am

A quick note, its not super simple to create a static html and css from a psd if your not familiar with slicing and basic css coding. Does anyone have any good links to ruts for this process? Something for starting with a blank page, custom format for the layout?

jmtaha
Feb 19, 2010 at 10:03 pm

I really appreciate the way you’ve built your GlossyBlue template. I’m a css developer, and for some reason, the way the style sheets were created within the default theme of the wordpress version I installed was very confusing. Great job and thanks for the tutorial.

Tyrone
Feb 20, 2010 at 1:48 pm

Pure genius, I was trying to build a WordPress theme backwards so to speak. I really like the way you have made the whole process so simple. Trying to build a theme using php, html and css at the same time while following WordPress docs is so time consuming and stressful.

Thanks alot

Gabriel
Mar 3, 2010 at 1:07 pm

Excellent visual instructions Nick! I referred to them often as I put together my 1st WordPress custom template.

Thank you!

~ gabriel

sbobet
Mar 3, 2010 at 10:48 pm

Thank you very much I will be teaching methods to customize my site.

TechOfWeb
Mar 6, 2010 at 6:02 am

Excellent tutorial… I already bookmarked this page..today i m going to start mine own theme..very handy tutorial

Thanks
Atul

Daneille
Mar 8, 2010 at 6:38 pm

this is one of the best tutorials that i’ve seen it totally helped me. thank you so much… :)

Jerome
Mar 10, 2010 at 1:42 am

Really good tutorial. Thanks.

Jitu
Mar 12, 2010 at 1:35 am

Very simple its a good tutorial.

Kevin
Mar 15, 2010 at 9:54 am

Great article. There is more informaiton you can find at wordpresswiki.com on creating themes, and also individual theme files. Nice break down of the code. Site is being updated and the community is building. Thanks again for your contribution here on your site. Very informational and good for WordPress users.

ümitköy nakliyat
Mar 16, 2010 at 6:03 am

ankara evden eve
ankara nakliyat
nakliyat firmaları
emlak piyasasi
ankara nakliyat firmaları
evden eve taşımacılık

77.94.32.174:80
Mar 17, 2010 at 4:45 pm

This blog was a good read! I could not have said things better myself.

Øystein Soteland
Mar 22, 2010 at 2:51 am

This is the best wordpress tutorial I’ve seen so far. Simple, to the point and lots of very explaining images!
Good work!

nom
Mar 22, 2010 at 1:03 pm

Can you post something about how to make a form mail on wordpress and a gallery?

X
Mar 25, 2010 at 6:36 pm

Super GREAT!!! Thank You Very Much!!!1

brad
Apr 3, 2010 at 2:59 pm

Thanks so much for this tutorial, finally decided to give it a try and I’m glad I did

Cameron
Apr 3, 2010 at 4:15 pm

On step 5 I do not have a searchform.php file inside my default theme folder. Using WordPress 2.9.2

What is the fix for this?

Thanks

User5976540527
Apr 14, 2010 at 7:51 am

Use http://wordpress.org/extend/plugins/spam-free/ to get rid of the spam!

Random Number: 5976540527

User8125354657
Apr 14, 2010 at 7:52 am

Use http://wordpress.org/extend/plugins/spam-free/ to get rid of the spam!

Random Number: 8125354657

User1733516826
Apr 14, 2010 at 7:52 am

Use http://wordpress.org/extend/plugins/spam-free/ to get rid of the spam!

Random Number: 1733516826

User9918141164
Apr 14, 2010 at 7:53 am

Use http://wordpress.org/extend/plugins/spam-free/ to get rid of the spam!

Random Number: 9918141164

Ezequiel Lavaca
Apr 14, 2010 at 12:56 pm

Great Tutorial, the best one about “how to make a wordpress theme”. Easy and consice.

Congratulations!!!

Purrpelle
Apr 14, 2010 at 1:41 pm

Great advice, as usual!

Proofing1
Apr 17, 2010 at 12:11 am

Finally, one that I can understand! Thanks!

Javier
Apr 19, 2010 at 6:52 pm

cheers from malaysia~

rap dinle
Apr 20, 2010 at 2:22 am

Great advice, as usual!

impl
Apr 20, 2010 at 2:44 pm

thanks
it’s obvious your tutorials worth !

marina
Apr 20, 2010 at 5:51 pm

thanks ;)

Taneem Sarwar
Apr 21, 2010 at 8:55 am

I had been looking for something like this. The explanations offered are so explicit and easy to follow. Its a really good tutorial. Do you not run a practical workshop because that would be more useful?

John Gregory
Apr 21, 2010 at 8:41 pm

Still way to confusing buddy…

haqi jamison
Apr 2, 2011 at 1:00 pm

I feel the same way, it’s still way to confusing. What if I want to create a theme from my design and just apply the necessary php word-press code?

susan j
Apr 27, 2010 at 9:31 pm

Wow this is a really good tutorial on building a custome wordpress theme. I have some html skill so it’s easy for me to follow. I really like how you used lots of graphics in this tutorial.

Joe
Apr 28, 2010 at 9:15 am

I think was really well explained! Great work! And John Gregory it’s “too” buddy.

Heather
Apr 28, 2010 at 1:08 pm

This looks like a great tutorial! I’ve tried going through WP’s Codex and the language is very complicated. It takes reading several times to understand some of it, and although I’m starting to understand a lot more, as a learner I find it very confusing. I’m trying to learn JS and PHP but it’s going to take some time, so any help I can get along the way is a boost! Thanks for this.

Sindi
Apr 28, 2010 at 8:06 pm

Hi,

I want a Twitter-feed badge on my WP blog that is custom like yours – it’s real nice!! Where can I find a plug-in that?

Thanks,

Sindi

Web Design
Apr 28, 2010 at 8:57 pm

Gracias :)

Buster Chee
May 2, 2010 at 12:16 pm

Dude, you saved my life! The one and only step by step guide that wasn’t hard work! Fankyou! Chee

S. Ramelan
May 3, 2010 at 2:38 am

Great article! Here is another on creating wordpress theme http://morzdesign.com/tutorial-how-to-create-a-wordpress-theme-from-scratch/

M
May 4, 2010 at 9:13 am

Thanks for the tutorial, it helped me to learn a bit more about wordpress. However I have one problem: I’m trying to put a background to the whole page, giving a brackground to the div #page, but it doesn’t work, it only shows that background in a tiny place near the header. Does anyone has any idea of why it happens? Thank you very much.

phoenix
May 9, 2010 at 3:52 pm

add the background to the html body tag, worked for me :)

Scott
May 11, 2010 at 11:01 am

This is by far the best tutorial I have ever seen for creating WordPress themes. Very nice job. Keep up th egood work.

asdasda
May 12, 2010 at 3:04 pm

0i9i9i9i987yvt6hy

Eva
May 15, 2010 at 8:21 pm

Wow amazing tutorial .. thanks.. I’m new with wordpress theme and still learn how to custom my website..

mack
May 16, 2010 at 6:39 am

I want to make a WP theme directory, but just dont know, how to make one?
LIke People should come and submit their themes to my site.,
How will that work?

I have zero knowledge on programming

Roncho Pansa
May 16, 2010 at 9:10 am

I like this post. :)

Grant
May 17, 2010 at 3:30 pm

This tutorial is excellent! I searched Google for hours and couldn’t find an easy solution on how to convert my HTML/CSS page to WordPress PHP. Then I found this site and had it up and running in no time!

Thank you so much!!

Milan
May 18, 2010 at 6:50 am

Great, thanks! Loved it!

travis
May 18, 2010 at 10:30 pm

i’m in the middle of this tut which i’m finding pretty easy except for step 13 that says

“Then, replace the static text with the WordPress Template Tags: post date, title, category, comments, next and previous link.”

.. i’m not sure what that means exactly, any help would be appreciated.

thanks

dattai
May 19, 2010 at 12:16 am

heloo
Im Nguyen,from Vietnam

I love your design,special this post.I hace added to my bookmark !

Thanks a lot

NiS
May 19, 2010 at 9:34 pm

Nice, added to my bookmark. Thank you…

Wordpress customization
May 20, 2010 at 4:46 am

Website Design & Development and Web Promotion Software Design System help your businesses to get online, increase your sales, rank high on search engines, and increase traffic to their websites.Web marketing is fast becoming the best way for companies around the globe to develop business and generate sales.
Software Design System has the expertise to deliver a structured Internet marketing strategy tailored to your company’s precise needs and designed to deliver you more customers

Voilivoilou
May 22, 2010 at 4:18 pm

i need some help, i’m getting errors on wordpress after installing the theme i made …

Warning: fopen(…/style.css) [function.fopen]: failed to open stream: No such file or directory in …/wp-includes/functions.php on line 3598

Warning: fread(): supplied argument is not a valid stream resource in /home/djmecca1/public_html/wordpress/wp-includes/functions.php on line 3601

Warning: fclose(): supplied argument is not a valid stream resource in …/public_html/wordpress/wp-includes/functions.php on line 3604

xss
May 24, 2010 at 11:13 am

alert(‘xss’)

Muhammad Azhar
May 24, 2010 at 4:44 pm

thanks dear for share this very helpful post with us,,,,,,

DBosch
May 24, 2010 at 4:46 pm

You know what/be great?!

You know the way you have the default WP index.php image with visual outlines and captions to sections like: header , sidebar .. etc. to have actual corresponding php tags written along side that call for those sections, as well as php tags visually associated with post header, post, comment count etc.

Imagine how liberating this would be to a non-php guru designer who tries to grasp and manipulate layout to specific needs.

Guy
May 25, 2010 at 3:55 am

Wow this was perfect for me. Thank you.

-guy

kumbi
May 28, 2010 at 7:33 am

all good till the end. i need to make the latest post in each category [news, articles] different from the rest on my home page. any tricks i could employ?

Lester Pudol
Jun 4, 2010 at 11:50 pm

Nice Post Dude! 3 Stars and a Sun!

Travis
Jun 10, 2010 at 11:47 pm

Holy Mother of God. BOMB!! I don’t know anywhere I have seen it explained so well and easy to understand. 5 STARS.

Elizabeth
Jun 11, 2010 at 9:10 pm

Thanks so much for this. I’m doing something a little more complicated, but this is a great start and really allowed me to see exactly what I need to do. Thanks also for the lovely Photoshop demo file. It’s so clean and makes so much sense. You are the bomb!!

pondicherry
Jun 15, 2010 at 5:19 am

thank you so much, anyway i will implement those theme into my site.

Shazam
Jun 16, 2010 at 1:13 pm

That is a fantastic blog post. So clear and straightforward. You did a great job covering the basics so a beginner can get their feet wet and make their own themes. Thanks for all the screen shots – they are a tremendous help.

alan adı tescili
Jun 17, 2010 at 9:07 am

awesome tutorial!!! thank you very much..

Lorraine
Jun 17, 2010 at 5:02 pm

This tutorial was a godsend! Many thanks.

Wordpress Developer
Jun 18, 2010 at 7:03 am

Though I have installed . customized themes for my WP clients , I have never tried designing a theme from scratch because of the cross-browser compatible issues.

This article has given me an idea on how to make it happen , let me try it shortly :-)

matt magi
Jun 18, 2010 at 10:14 am

Getting into designing wordpress themes this is just what i needed. thanks

kompresor market
Aug 12, 2012 at 2:43 pm

kompresor market, kompresor, kompresör, vidalı kompresör, comressor, air, 2 el kompresör, ikinci el kompresör, hava kurutucu

Deepak
Jun 25, 2010 at 9:59 am

Thanks for your support.. You blog is a magic.. You are unique..

smart blogging
Jun 26, 2010 at 2:45 am

hai thanks for you tutorials….thank you so much, anyway i will implement those theme into my site.

keir
Jul 1, 2010 at 10:36 am

hi I am customising a wp theme using the one provided here in your tutorial as a basis (great tutorial by the way, really invaluable and just what I was looking for) however when I activate the theme text in the footer becomes a link even though it shouldnt, can you take a look please as I can’t seem to figure out why, the link is http://blsc.org.uk/news/

anjani
Jul 3, 2010 at 4:56 am

Thanks for your support.

larrygomezaz
Jul 5, 2010 at 5:42 pm

Thanks for this. On step 10, footer.php, the “Recent Posts”, and “Recent Comments” code is partially hidden. Can you expand this so the entire code is viewable? Thanks again.

Progs4u
Jul 6, 2010 at 11:03 pm

Thank you so much ..
You are very cool

Heera
Jul 10, 2010 at 12:39 pm

It’s really cool.

Jelskedei
Jul 12, 2010 at 3:52 pm

Thanks. For this I was looking for a long, long time. And I found this. Many thanks.

shinobi-wan
Jul 12, 2010 at 6:32 pm

Can someone please explain to me how Nick magically turned his psd file into html & css files? There’s no explanation of that. Was this done by hand or in photoshop or another app? Anyone have a link showing me that process or can you explain it for me Nick? thanks

Jasper
Jul 16, 2010 at 12:40 pm

@shinobi-wan

you have to build a static website yourself first. When you’re done with that Nick shows you how to split your static webpage and turn it into a dynamic one suitable for wordpress.

most of the times you create a mock up with ps or fireworks and start building your site within dreamweaver. Since it is hard to build websites within wordpress it is prefered by webdesigners to create it elsewhere. Therefore, this tutorial is really helpful.

mysuperwoofer
Jul 19, 2010 at 10:31 am

Link Building is one of the most significant aspect of the off page optimization process and is a major determinant of the popularity of your site. For search engines, back links or links pointing to your website indicate that you are ‘hot’ in the online marketplace.

Mark
Jul 20, 2010 at 1:51 pm

This is an amazing Tut, keep up the good work ! :D

sridarshan
Jul 21, 2010 at 6:57 am

Will this work in wordpress 3.0 ??

web design
Jul 22, 2010 at 9:06 am

thank

Lahiru
Jul 23, 2010 at 10:58 am

This is the tutorial what i’m looking for, Thanks for sharing , I’m php developer but dont know how tao customize wp template , now i now, thanks to you .

freelancehyderabad
Jul 29, 2010 at 9:06 am

One and only great tutorial, Really awesome thank you so much

Todd S. Jones
Jul 29, 2010 at 1:00 pm

Perfect, just what I was looking for! There are some other great tutorials out there, but this is the best I’ve found so far. It seems that you’ve almost provided a framework that will be invaluable for building themes.

Vbuc
Jul 29, 2010 at 2:34 pm

Thankyou! I’ve been dreading learning wp until now.

Schalk Joubert
Jul 31, 2010 at 6:32 am

Hi, I wasn’t looking to create my own theme, but I bookmarked this page as I really would like to.

For now, I am tweaking a theme and try to:

Create a second tag which will link to a 2nd singe.php
In other words i want my normal blog posts to have the standard more tag which takes them to the single.php
AND THEN
I want a tag which take them to single-services.php
single services.php is a duplicate if single.php with slight changes.

Is this possible?
Many thanks

Evan Miller
Aug 2, 2010 at 11:57 am

This is an excellent tutorial. Any chance of a revised version of this tutorial to focus on WordPress 3 in the future? I’ve noticed there are some differences (although they haven’t derailed me completely, yet)

sae
Aug 8, 2010 at 8:29 pm

thank you for the information,
This was helped,
spirit! ! ! ! !

custom wordpress theme design
Aug 11, 2010 at 4:37 pm

Thumbs Up for this post! This is great .. step by step and with details

Peter
Aug 12, 2010 at 10:11 am

O dear… this tutorial comes as an answer to prayer for folks like me.

Thanks for sharing!!! ;-)

Peter
Aug 12, 2010 at 10:42 am

Aww… this is just nice! Thanks again for sharing!!

David
Aug 13, 2010 at 6:00 am

Thanks for posting, very useful…

Nick
Aug 13, 2010 at 7:33 am

Fantastic tutorial for my first theme. Many thanks.

rap
Aug 20, 2010 at 3:21 pm

Nice post… Thank you so much.

rap
Aug 20, 2010 at 3:41 pm

thanks
it’s obvious your tutorials worth !

Josh
Aug 24, 2010 at 1:10 am

Hi, great tutorial, really useful.

Just one thing, the side bar isnt widget friendly? how can we friend it up to widgets?

Thanks

Josh
Aug 24, 2010 at 1:25 am

i got it, just needed to copy the functions.php into my directory, thanks

Bob
Aug 24, 2010 at 10:13 am

Very good explanation of how to do a theme. Thanks! I needed that one for a class project.

Dos
Aug 24, 2010 at 11:55 pm

This tutorial sucks!… :-) just kidding this is a double thumbs Up, Ass kicking, Answered prayer, Awesome tutorial on wordpress theme I’ve ever read.

Building
Aug 26, 2010 at 5:55 am

Nice post… Thank you so much. Fantastic tutorial for my first theme.

Fahadh Nazir
Sep 1, 2010 at 1:13 am

It’s damn good! I learnt something new today! And realized it worths alot! Thanks for the clear explanations with the examples! 5* !

Fahadh Nazir
Sep 1, 2010 at 1:24 am

Succeeded with it! Wow! Thanks :)

Kevin Mahoney
Sep 2, 2010 at 7:25 am

Many thanks for your post! I used your tip today
Kevin Mahoney
Brush Country Web
Hunting Web Design

martin
Sep 2, 2010 at 7:44 am

Thanks a lot – one of the first google hits on the topic, going to try it out now :)

loadmsn
Sep 6, 2010 at 12:59 am

Wow such a Great tutorial …Thank you : )

hitch mount rack
Sep 6, 2010 at 1:06 am

What’s tutorial !! clearly useful easy to learn to creat yourself wp-theme …Thank you a lot

Nemanja
Sep 9, 2010 at 5:18 pm

Hmmm , can i with this tut from some templete html code make an php theme for wordpress?

Goldie Eidinger
Sep 15, 2010 at 5:36 am

Great news mann !

youtube
Sep 16, 2010 at 4:48 am

finally i really get tired of editing other people themes very good tutorial now i can do all what i like in my blog great work

Graphic Designer Sydney
Sep 16, 2010 at 6:32 pm

Fantastic! Thank you!

Dave
Sep 21, 2010 at 8:40 pm

Hi. Great information here! I need some help.

When I create new “pages” every single article I write has the same header ( meaning the same H1 Words and thats not good for the search engines )

I want to keep the H2 title above the content ( which matches the page title ) but I need the header to have a unique H1 Title that matches each page I write.

I hope I didnt confuse you because Im dizzy already :)

Thanks
Dave
Las Vegas

jonfreeze
Sep 22, 2010 at 7:12 pm

Can you give or show me a real example of a word press php page set up. This is still not helping. I don’t see where to put the html.

thanks

Jonathan R
Sep 23, 2010 at 3:00 pm

Great sites! hanks for sharing. Is there anyway that we can make boundary line as well?

hak01
Sep 24, 2010 at 9:28 am

Could you please let me know how to modify the glossyblue comments.php in order to establish a paged navigation of comments?

kike314
Sep 25, 2010 at 6:12 am

This post rules!
It was very helpful!
Thanks!

faye
Sep 25, 2010 at 7:49 am

best examples.. thanks wDw!

Thomas
Sep 27, 2010 at 3:50 pm

I love You Man!! Awesome Job Thanks ..!!

Eddie Hyland
Sep 28, 2010 at 12:41 pm

Wow, I wish someone had shown me this article when I started making WordPress websites, would have made things a lot easier. Nice design on your website btw.

Jignesh
Sep 30, 2010 at 5:17 am

Thanks
I m new program this help me alot.

Jacqueline
Oct 1, 2010 at 2:28 pm

I can’t wait to use these tips; I’m sure it’s SO helpful! This does not require wordpress users to purchase the Custom CSS option, right?

Jignesh
Oct 6, 2010 at 6:30 am

This was best post on wordpress theme.

This helped me to install and customes my blog.

Screnshot given me clean idea.

Thanks a ton.

mary
Oct 7, 2010 at 9:57 pm

Just want to say what a great blog you got here!I’ve been around for quite a lot of time, but finally decided to show my appreciation of your work!

Saeed Ahmad Rafay
Oct 13, 2010 at 4:12 am

Really great tutorial for wordpress newbies! :)

zeaks
Oct 15, 2010 at 4:02 pm

Nice tutorial, but it would be much more helpful if either a syntax highlighter was used, or if all the code was included in the images provided. (it’s cut off in several)

I know alot of people will understand how to do some of this, but stating “No PHP skill is required” and not showing the code to do it, only a link to the codex site that was stated “I find it too complicated for a beginner.” in the beginning is confusing. It’s either meant for beginners or it’s not.

Eugene Indarto
Oct 16, 2010 at 8:58 am

Thanks for the tutorial. I will try to make my own theme for my blogs

Alice
Oct 16, 2010 at 7:31 pm

Bout to try this out, Just quickly scanned over it and it seems to be just what I need for this project. Thank you much for this.

Joe
Oct 19, 2010 at 1:38 pm

Great article! much simpler than others, just what I have been looking for!!!

Brandon Byars
Oct 21, 2010 at 12:43 pm

This was very helpful. Great job!

Admiryyy
Oct 21, 2010 at 10:15 pm

Tks for sharing ,,greatly appreciate it..

Robert Kennedy
Oct 22, 2010 at 5:16 pm

Love the theme you have going here. I am just starting out with theming wordpress and I am pretty excited about it. I could see myself just creating themes instead of building websites.

Fandi Akhmad
Oct 24, 2010 at 10:48 pm

Dh,

Sorry my bad english…
Help me, i want to add frontpage in my blog.
My plan the frontpage has different style with other pages.

Please help me,, :(

josh
Oct 25, 2010 at 5:13 pm

Great article!

the brave
Oct 26, 2010 at 2:05 am

thanks this seems to wat i’ve been looking for :-}

Rakesh
Oct 27, 2010 at 7:42 am

This was Coll post I really loved Reading this.
Latest messages.

shoib Khan
Oct 28, 2010 at 10:11 am

Hi, I did follow your steps but at step 14. Preview your theme was not able to complete, when I am at theme management screen of wp-admin, can’t see glossyblue theme, I am pretty sure I did follow all steps carefully, but may be I missed something, I didn’t see where we are adding our theme in the theme list,
Help me please

Marzuki
Nov 5, 2010 at 5:14 am

Superb tutorial, thank you.

Bowo
Nov 6, 2010 at 1:12 am

Thanks.. I’m a newbie and this was very helpful..

home tutor chennai
Nov 7, 2010 at 3:42 am

Hi,
I have read your post it is really good and may be helpful for me. I am retired mathematics teacher and provides quality online tutoring if anyone need can contact me.

thanks

Bahawalpur
Nov 8, 2010 at 4:45 am

For days I was thinking to move a step forward from static html websites to WordPress or Joomla. I have found this tutorial very helpful for the beginners like me to start understanding the ins and outs of WordPress. Thanks a lot.

Rob Elliott
Nov 10, 2010 at 7:40 am

Hey, i’ve successfully customised a theme and am ready to deploy it to our live server. I have tried to zip the theme folder and upload it using wordpress’ theme uploader. No love. Other themes upload fine, but i am getting a “the uploaded file could not be moved to…” error. Looks like it is trying to add it to an uploads folder with the year and month subfolders.

Any advise? Is there a special way to package the theme zip file? Special zip encoding that needs to be used. I am using standard Mac zip process.

Victoria
Nov 11, 2010 at 4:05 am

I am stuck at step #3.
How do I convert my psd into a html and css file?
Please help!

nate
Nov 13, 2010 at 10:10 am

Great tutorial. I’ve been looking for something like this for a while. Is there one like this for drupal or joomla out there?

george
Nov 18, 2010 at 12:39 am

Is there any other easy way how to understand the step 8??? What do u mean by this??
Go to the default theme folder, open the header.php. Copy and replace the tags where it requires PHP code (Template Tag): , stylesheet, , and .????
any other instructions???

waleed khan walzzy
Nov 18, 2010 at 4:43 am

plz watch this site

Keisa
Nov 19, 2010 at 9:59 pm

What is a photoshop mockup?
I have PS CS5
but I have no idea how to go about creating a mockup.
Please help?

TTAR
Nov 20, 2010 at 6:16 am

Just what I’ve been looking for…

Been designing and coding for a while now, an decided it’s about time I learned how to build wordpress themes… Thank you for sharing…

Sam Hembury
Nov 22, 2010 at 8:43 am

Brilliant tutorial, looking forward to working though it and building a nice WordPress theme!

Cheers

tori
Nov 23, 2010 at 3:35 am

I don’t understand this sentence:

>Go to the default theme folder, open the header.php. Copy and replace the tags where it requires PHP code (Template Tag): , >stylesheet, , and .

What am I replacing with what? Please be very specific. Thanks.

PTEC
Nov 23, 2010 at 7:09 am

Thank you for your useful post
a lot …

Jack
Dec 4, 2010 at 5:24 pm

Just tried using WordPress and I am not sure I see the benefit of using it at all. Can’t I just use the css, xml, html, etc. and run my own blog? Why do I need WP?

rikkit
Dec 5, 2010 at 5:18 am

@502

The point of WordPress (and any other CMS) is to abstract the content away from the rest of the site; this way css handles design, html laypout, and wp content. The advantage of this is that you can change the design/ layout without having to reformat the content.

wikijasons
Dec 6, 2010 at 1:19 am

Great tutorial. I’ve been looking for something like this for a while.

mikwillson
Dec 6, 2010 at 1:21 am

Your article’s resource box should help to persuade your readers. No matter how amazing your article is if it’s not succeeding in driving traffic to your website

Megan
Dec 7, 2010 at 8:22 pm

Thank you for posting this. You made wordpress customization simple without making me dumb down my design.

I’ve been trying to find a good explanation for how to customize wordpress. This is the only one I’ve found to date that I could actually follow. I still have a few kinks in my customization, but now that the code no longer looks daunting, I should be able to figure it out.

mikcle
Dec 8, 2010 at 1:19 am

It relies heavily on touch because the pages I have a user acting on, are usually a collection of child records. uggs outlet Caching is a big help in this respect.Thanks

Ooglaseren
Dec 8, 2010 at 7:46 am

Thank you for this helpfull tutorial, I’v made a great looking theme with this tut.

Design
Dec 10, 2010 at 7:59 pm

Thanks for sharing. I get satisfaction from this site. preserve it up. uggs outlet

Hasham rabbani
Dec 12, 2010 at 4:29 am

hi i want to create a theme of my website like the chive.com…can you help me out with that plz

karaoke songs
Dec 12, 2010 at 10:24 pm

I like your blog,I was searching article of this type, and I am glad I found exactly what I wanted. Thank you for this wonderful article.

Jahangir
Dec 13, 2010 at 1:39 am

They’re cute :) well done and thanks for sharing it.

Design
Dec 17, 2010 at 9:13 pm

Thanks for sharing. I get satisfaction from this site. preserve it up. I am content to uncover this short article very beneficial for me, since it consists of whole large amount of information. ugg bailey button I whatsoever occasions choose to look at the great quality content materials and also this create a difference I found in you post. many thanks for sharing.

Mathias
Dec 21, 2010 at 12:35 pm

Thank you a lot for your time and effort to share your knowledge.
I am about to code my first theme and was looking for a tutorial exactly like this one.
Cheers!

sean
Dec 21, 2010 at 1:23 pm

You saved me soo much time with the clear screenshots and everything I was able to put a basic theme together under an hour using a wamp installation. Love it! Thank you!!

Kristen Nush
Dec 22, 2010 at 3:40 pm

Usefull post can i translate into Polish for our blogs readers? If thats acceptable what type of acknowledgement would you prefer?

Preston Racette
Dec 23, 2010 at 11:00 pm

This is a very well written post! Keep them comming!

Henry Peise
Dec 24, 2010 at 2:27 am

Still wonder white iphone 4 avaiable or not? We tells you the answer is "yes". Now you can buy the hottest white iphone 4 Conversion Kit and make a change!

Preston Racette
Dec 24, 2010 at 7:02 am

This is a very good post! Keep them comming!

teeth brilliant
Dec 25, 2010 at 1:38 am

This teeth whitening system is approved by health experts and made by expert panel of dentists. Most of people believe that surgical option is the best and fastest way to obtain a sparking smile but it not so true. Teeth Brilliant contains all necessary ingredients which are needed to get a dazzling smile.
teeth brilliant

Juno Mindoes
Dec 25, 2010 at 1:38 am

Is white iphone 4 available right now? Cuz my friend told me he just got the white iphone 4 panel. But i haven’s seen it sold in my area. What’s wrong?

Hendra
Dec 25, 2010 at 11:11 pm

thanks for share… very help me for building my blog theme

teeth brilliant
Dec 26, 2010 at 4:09 am

One of the main reasons behind the pale and stained teeth condition is foodstuffs that you consume every day. Foodstuffs which most of the people consume everyday are coffee, tea; colored vegetables and fruits, soda etc which ail your teeth. People who prefer to smoke everyday are often seen with stained and pale teeth condition. Smoking also lead to several oral complications as well.
teeth brilliant

Isabeljezz Yutie
Dec 28, 2010 at 12:00 am

Its a fantastic blog post and its one of the best blog post and i have visited your site but its a nice post and awesome for coming year 2011.

Florida Keys Fishing
Dec 28, 2010 at 3:37 pm

Thanks you saved me a LOT of time configuring my wordpress blog on my site. The blue theme you had made it easy to work with that little template… I’m still plugging away at it, but hopefully have it done soon. I had been using squarespace service, though I cannot install that on my domain and customize it as much as this. WordPress rules!

biography
Dec 29, 2010 at 7:31 am

super themes. thanks for it.

Clare
Dec 29, 2010 at 8:00 am

Thanks for taking the time to document this process. I’m building my own theme at the moment and this is one of the clearest tutorials I’ve come across.

Christy
Dec 29, 2010 at 1:25 pm

Nice tutorial… All the matters are covered in a simple way.. Thanks for putting your time to make such a superb document…

Leesa
Dec 29, 2010 at 6:31 pm

Thanks so much for this post, it is much more straightforward than others I have come accross.

DeRek
Dec 30, 2010 at 3:34 am

Thanks for sharing. I get satisfaction from this site. preserve it up. uggs discount I am content to uncover this short article very beneficial for me, since it consists of whole large amount of information. I whatsoever occasions choose to look at the great quality content materials and also this create a difference I found in you post.

wawan
Dec 30, 2010 at 11:44 am

Nice tutorial… Thanks for share

YourGoalbook
Dec 31, 2010 at 4:20 pm

Thanks a ton for this tutorial..I am slowly trying to learn the ropes of WordPress, and am only beginning to see what can be done with it. Bookmarked this page for future reference!

Andgle
Jan 3, 2011 at 12:40 am

Great review — love pierogies — Moncler Jackets they are my comfort food reminding me of my dad that ate them often on Saturday nights.

haber
Jan 5, 2011 at 7:13 am

wonderfull theme.

haber
Jan 5, 2011 at 7:14 am

super themes. thank you for it.

Peck
Jan 7, 2011 at 12:53 am

This tutorial will not work with the new TwentyTen theme that comes as the default theme in WP 3.0. Just a heads up. I found this out after I completed most of the tutorial (several hours of work). It’s too bad, because the tutorial was great and well explained. Maybe there will be an updated version?

3GMobileStop
Jan 7, 2011 at 3:48 am

Nice Article, Really helpful.

creative web design
Jan 8, 2011 at 4:33 pm

Thank you Peck, this indeed doesn’t work with the new twentyten wordpress theme.

Uçak Bileti
Jan 11, 2011 at 3:55 pm

tema yapmayı hep merak etmişimdir

Thomas Dedry
Jan 12, 2011 at 7:10 am

I’ve just made mine following every steps: http://www.aubois.be/blog Thanks a lot for this awesome tutorial!

jason
Jan 13, 2011 at 12:09 pm

hi, this does not work with twentyten FYI.

but honestly, if you are familiar w PHP and HTML, you should be able to edit the twentyten files directly (back them up first) and accomplish customization in a few minutes.

in the themes folder, you will primarily edit header.php, footer.php and style.css.

it took about 15 minutes to get where i needed to be.

there may be another more correct way, but this was indeed easy.

Ben
Jan 14, 2011 at 2:54 am

Hmm, let’s see.

Toronto Website Design
Jan 15, 2011 at 3:06 am

Great! Thanks for sharing……..

Martin
Jan 18, 2011 at 7:57 am

Hi
Really apreciate this tut but I am lost near the start-I think I’m missing something vital about how you name the folders. By ‘default’ folder are you using that syntax in the way people write ‘yoursite.com’ meaning someone should put their own url in (and not like some do, type in ‘yoursite’ then complain it doesn’t work…sigh…You say to “copy searchform.php and comments.php file to the glossyblue folder” Err-they are already there… Should I be only copying the ‘GlossyBlue-html files’ folder to the themes folder then using that as the folder for the newly designed theme? Sorry to be obtuse but I am very confused here.

Arno
Jan 20, 2011 at 4:15 am

awesome tutorial, in 2 hours i mad emy own template :D ty

ELKOM KOMPRESÖR, KOMPRESOR, COMPRESSOR
Jan 22, 2011 at 9:41 am

VİDALI KOMPRESÖR, PİSTONLU KOMPRESÖR, 2 EL KOMPRESÖR, ALIM SATIM,0216 526 06 66, SATIŞ VE SERVİS’DE 12 AY TAKSİT, kompresör satıyorum, satılık kompresor, ikinci el kompresör, silobas kompresor, sessiz kompresor, Pistonlu hava kompresoru,kompresör tamiri,kompresor,elkom kompresor, dizel kompresor, sessiz kompresör, dişci kompresöru, komprasor, kompresör tamir, kompresor, marangoz makimanaları, 2 el kompresor, kompresor satış, ünit kompresör, jeneratör servis, hidrafor servis, dudullu kompresör, ucuz kompresör, vidalı kompresörler, imes kompresör, kompresörler, kompresorler, ikinci el kompresör, kiralık kompresör, turbo kompresör, seperatör, hava kompresörleri, hava tankı, kompresör servisi, istanbul kompresör, pistonlu kompresörler, marangoz makinası, 2 el marangoz makinası, استخدام برغي ضاغط صومعة ضاغط الديزل ضاغط مستعملة ضاغط برغي ضاغط الهواء ، باستخدام ضاغط الهواء ، ضاغط الهواء ، وبيع وشراء screw compressor, used compressor, piston compressor purchase and sale of spare parts винтовой компрессор, используемый компрессор, поршневой компрессор покупки и продажи запасных частей ikinci əl və sıfır Vidal kompressor alm satqı ehtiyat hissələri 2 əl kompressor hər tutum də vardır hər markalı Vidal porşenli kompressor ehtiyat hissələri silobas kompressor dizel kompressor

Shanz
Jan 25, 2011 at 3:41 am

Thank you for this great tutorial, i was having trouble with my search for hours, then i stumbled on your tutorial. and it solved my problem.

Bobby Gerez
Jan 27, 2011 at 9:52 am

I agree with creative web design. Twentyten wordpress theme is different. BTW thanks for the tutorial. I Hope you can post some Twentyten theme.

mue
Jan 29, 2011 at 2:43 pm

h

wesam
Feb 4, 2011 at 3:25 am

thx I love you

fahad
Feb 4, 2011 at 7:26 am

I loved your article, I will try to change the theme of my wordpress blog Mouseover to suit my taste

rathore
Feb 5, 2011 at 5:33 am

thanks your
you can help-
i ask a question
how to use custom single.php file in wordpress

Marcus
Feb 6, 2011 at 4:55 am

Hello..

What a great tutorial this is. I have searched for hours trying to find some tutorial as simply layed out and instructed as this one.

One request though, please please please can you do an update for the latest WordPress theme, just update what needs to be changed, as a novice i would really appreciate this. ;-)

Thankyou

yuke
Feb 6, 2011 at 2:47 pm

very very very very nice articel….
i like, can u help me?

how to make gallery look like lincah.com??

please help me…..

you can send to my e-mail…

Zach Mathews
Feb 6, 2011 at 8:10 pm

Cool I will be creating wordpress themes for themeforest in no time.
WordPress here I come. Tomorow…….

james
Feb 6, 2011 at 10:08 pm

how do i work with the %postname% it gives me nothing when put this in permalinks..

majed
Feb 7, 2011 at 11:25 am

Hi , i have a problem with single.php , when i click on the title in the index page it goes to something like
http://localhost/wp1/?p=4
can anyone help me. thank you

COMPRESSOR
Feb 9, 2011 at 5:07 am

kompresör alım satım vidalı kompresör pstonlu kompresör, compressor

AİR COMPRESSOR
Feb 9, 2011 at 5:08 am

kompresör, vidalı kompresör, air compressor, pistonlu kompresör, elkom kompresör

AİR SCRAW COMPRESSOR
Feb 9, 2011 at 5:11 am

air compressor, kompresor, vidalı kompresör,pistonlu kompresör, air scraw compressor

SCRAW COMPRESSOR
Feb 9, 2011 at 5:51 am

kompresor, vidalı kompresör,pistonlu kompresör, air scraw compressor

Gadget News and Reviews
Feb 10, 2011 at 4:42 pm

This tutorial will not work with the new TwentyTen theme that comes as the default theme in WP 3.0. Just a heads up. I found this out after I completed most of the tutorial (several hours of work). It’s too bad, because the tutorial was great and well explained. Maybe there will be an updated version?
thanks for share

Irfan Malik
Feb 12, 2011 at 6:24 pm

Great tutorial – I like the way you cut out all the fluff and put it onto one webpage.

Neeka B.
Feb 15, 2011 at 3:35 am

How much do you charge to do this?

Andrew N. Tupag III
Feb 15, 2011 at 10:10 am

It really helps me a-lot for a newbie like me. Thanks for this great post..

jam
Feb 16, 2011 at 5:54 am

thanks so much ! but is this the newest WP version >>???

marmara kompresör
Feb 18, 2011 at 5:36 am

kompresor, vidalı kompresor, 2 el kompresör, dizel kompresör, marmara kompresör, elkom kompresör

COMPRESSOR AİR
Feb 18, 2011 at 5:42 am

kompresor, vidalı kompresor, 2 el kompresör, dizel kompresör, marmara kompresör, elkom kompresör

COMPRESSOR AİR
Feb 18, 2011 at 5:43 am

air compressor, kompresor, komprosor, vidalı kompresör, silobas kompresör

COMPRESSOR, KOMPRESÖR
Feb 18, 2011 at 5:45 am

air compressor, kompresor, komprosor, vidalı kompresör, silobas kompresör

screw compressor
Feb 18, 2011 at 5:45 am

vidalı kompresor ikinci el kompresor kompresor alım satım

COMPRESSOR, KOMPRESÖR
Feb 18, 2011 at 5:47 am

ELKOM KOMPRESÖR, air compressor, kompresor, komprosor, vidalı kompresör, silobas kompresör

COMPRESSOR, KOMPRESÖR
Feb 18, 2011 at 5:49 am

VİDALI KOMPRESÖR, air compressor, kompresor, komprosor, vidalı kompresör, silobas kompresör

COMPRESSOR, KOMPRESÖR
Feb 18, 2011 at 5:50 am

dizel kompresör, air compressor, kompresor, komprosor, vidalı kompresör, silobas kompresör

COMPRESSOR, KOMPRESÖR
Feb 18, 2011 at 5:52 am

marangoz makinaları, ikinci el marangoz makinaları, 2 el marangoz makinaları, air compressor, kompresor, komprosor, vidalı kompresör, silobas kompresör, silobas kompresör

MARANGOZ MAKİNALARI, KOMPRESÖR
Feb 18, 2011 at 5:54 am

marangoz makinaları, ikinci el marangoz makinaları, 2 el marangoz makinaları, air compressor, kompresor, komprosor, vidalı kompresör, silobas kompresör, silobas kompresör

MAKİNALARI, KOMPRESÖR
Feb 18, 2011 at 5:55 am

marangoz makinaları, ikinci el marangoz makinaları, 2 el marangoz makinaları, air compressor, kompresor, komprosor, vidalı kompresör, silobas kompresör, silobas kompresör

KOMPRESÖR, PİSTONLU KOMPRESÖR
Feb 18, 2011 at 6:01 am

blog, elkom kompresör, air compressor, kompresor, komprosor, vidalı kompresör, silobas kompresör, silobas kompresör

Barry Goldwater
Feb 19, 2011 at 3:26 pm

not helpful at all!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

the best
Feb 19, 2011 at 8:32 pm

Great article. I use word press and had no idea what to do after design was completed. When you have no idea what your doing is like putting 16 inch wheels on a bike 14 inches tall.

Resty
Feb 20, 2011 at 2:25 am

Nice post this will help me a lot

herbert marzon
Feb 20, 2011 at 10:49 pm

very good! very helpful! thanks for this imma learn this beat by beat.

Tyo
Feb 21, 2011 at 9:34 am

Thank you very much, this tutorial helps me to learn wp theme, I just want to create my own wp theme,

clickron
Feb 23, 2011 at 11:45 am

I have a website I’ve designed in Front Page using .asp. I’d like to convert it to a wordpress site, but I need the same grid format. It needs to look similar. If somebody’s up to it, I’ll pay. Here’s what it looks like now… http://www.truckingplanet.com

cheap christian louboutins
Feb 24, 2011 at 1:24 am

with the help of it, we can clear christian louboutin high heels open which a door.

rahul calicut
Feb 25, 2011 at 2:23 am

very nice..thanks

Pieter
Feb 26, 2011 at 5:42 am

Good tutorial for the beginning wordpress webmaster. I’d want to see something more in detail though.

shahram
Feb 26, 2011 at 10:59 am

Awesome

Dessign
Feb 26, 2011 at 9:58 pm

Amazing tutorial for any beginner and anyone eager to learn wordpress development,

Marios

cekay
Feb 27, 2011 at 5:12 am

lol
what a beautiful theme
may I’ll learn this tutorial deeply

Dariush
Feb 28, 2011 at 5:57 pm

Thank you very much for all the details, but is there any easier way to do it, for somebody like me that is not good with all these codes? any live php editor software. This is my website and i want to change it to blog format. http://www.djdariush.com. Please help

Shoes
Mar 2, 2011 at 9:59 pm

the WordPress code. By doing so, I don’t have to worry about HTML or CSS bugs during my theme making process.

rahul Singh
Mar 5, 2011 at 3:53 am

nice work good resource available

Eric de Oliveira Campos
Mar 5, 2011 at 12:35 pm

Inspiring… great work

Dilshad Khan
Mar 6, 2011 at 12:22 am

A developer provide us this theme, i customize it & load on other sites as well, but could not change most of matter, well this is very nice tutorial, very helpfull for biggners like me

Masood
Mar 7, 2011 at 12:52 am

Great and nice….
Thanks

AHHP
Mar 7, 2011 at 1:30 am

Its really perfect. Thank you.

Lina
Mar 7, 2011 at 8:21 am

Yes, as many have already said – PLEASE do un update for WordPress new default theme twenty ten. This tutorial seems so good!
Thanks,
Lina

Manuela
Mar 7, 2011 at 8:53 am

Hi!

I just found this webpage and I just gotta say it’s amazing! I’m trying to create my own layouts with Photoshop CS2 and later use them in WordPress. I find it very difficult but I think this can help me so I’ll keep on practicing. I love this page! Cute design, bright colors! Yay!

xox.

Reniferu
Mar 11, 2011 at 12:37 pm

THX! Great tutorial!

JiGuang
Mar 17, 2011 at 2:38 am

Brilliant article!

How To Get Taller | How To Put On A Condom
Mar 17, 2011 at 5:09 pm

This site taught me about building custom WordPress themes. At the comfort of my home!!!!:) Thanks.

How To Put On A Condom | How To Get Taller
Mar 17, 2011 at 5:10 pm

I totally agree that what the Codex site provides is a little complicated for a beginner like me. Thank you so much.

Karen
Mar 23, 2011 at 10:26 am

Is there a tutorial for for wordpress to create a site without looking like a blog so no posts, comments, or etc. How do you take a comp from a regular small business to a wordpress theme?

laxmikant
Mar 24, 2011 at 11:37 am

good one……..

Patrick S.
Mar 24, 2011 at 4:26 pm

All fantastic thoughts for making your business site, what about hosting for websites, do you have any suggestions, maybe this one? http://bit.ly/fWNOkQ

Alan
Mar 24, 2011 at 8:41 pm

This is such a great article, but the very best thing about it is this: The dark art of WP template-craftery has always been one of those “keep-plugging-code-straight-into-the-template-files-and-pray-everything-works” kind of things. You’ve beautifully managed to arrange it into an actual organized process.

Thanks for being excellent.

muzrek
Mar 31, 2011 at 6:12 am

Great article..!! thank you for info.

ahmet
Mar 31, 2011 at 6:14 am

thanks for article. its will be usefull . good job

ash
Apr 1, 2011 at 7:37 am

do you have to slice up the PSD file and include all the buttons and link neccessary?

chris
Apr 7, 2011 at 5:28 am

do i have to learn php first before making a custom templates in wordpress

Arslan
Apr 7, 2011 at 12:05 pm

Great tutorial.
Thanks a lot!

mommahen
Apr 7, 2011 at 6:52 pm

…ugh. that just gave me a headache. Why can’t I understand all of this?

Rachel
Apr 7, 2011 at 6:52 pm

Google keeps bringing me back here today thanks for the wordpress help!

Racquel
Apr 9, 2011 at 11:55 am

nice tutorial. thanks to you.

Penny
Apr 10, 2011 at 1:24 pm

Thank you! You helped me save a WHOLE lot of time! I was able to change my html website to a wordpress website very quickly thanks to your tutorial!

when it gets approved by my client, it will be viewable at http://www.merrepenarts.com.au … should be up in a few days!

ibbe nik
Apr 11, 2011 at 5:39 am

The article is very helpful . Thank you ve much

NateJoyner
Apr 14, 2011 at 12:23 am

Awsome article, just what I was looking for,
keep up the amazingg work!

Peace!

dexx
Apr 17, 2011 at 2:03 pm

Another questionnaire, the participants’ problem identification and structuring, idea generation, problem elaboration and clarification, such as creativity, problem solving insertion sezkin idea which one’s preferred styles are evaluated. While participants preferred the style of non-disclosure and intellectual development of ADHD, with ADHD, participants chose to produce ideas.

contact wordpress plugin
Apr 18, 2011 at 9:08 am

Copy and replace the tags where it requires PHP code.

Baler
Apr 27, 2011 at 2:24 pm

Recycling is extremely important to save money, as well as the planet. A cardboard baler is a great way to do this.

Rhys
May 1, 2011 at 8:21 am

Thanks for this guide…much apprecitaed. I use it everytime I need to build a new wordpress site

Jenny
May 5, 2011 at 5:32 pm

For some reason, the search funtion is not working, any work arounds?

abid
May 10, 2011 at 5:47 am

While participants preferred the style of non-disclosure and intellectual development of ADHD, with ADHD, participants chose to produce ideas.
Thanks for this guide…much apprecitaed. I use it everytime I need to build a new wordpress site.

laxmikant
May 17, 2011 at 1:28 pm

awesome thanks…

Scott Adams
May 20, 2011 at 10:52 am

I will be looking this over and giving it a whirl. If it works… you are the king!

Frontline Plus
May 23, 2011 at 4:09 am

More detailed information. Tahnk you.

Neil Ward
May 23, 2011 at 11:48 am

Wow, this advice is amazing and so detailed.

Thanks a lot for writing this.

Benjamin Wahing
May 23, 2011 at 9:22 pm

Thanks for this easy to follow guide. It really helps!

Article Writing
May 24, 2011 at 1:03 pm

its to hard for me because i m making first time this theme :s
i m tired of facing problems :'(

Terrance Lewis
May 24, 2011 at 5:02 pm

Good work to come out with a tutorial, good for the basics, but for the more professional and elegance it requires more time and better effort, no offense for this, cuz its actually and indeed a good tutorial for the beginners, cheers.

SupamaN
May 24, 2011 at 9:09 pm

Very helpful me,thank you very much.

petermyo
May 27, 2011 at 9:09 am

very usefull . i want to know more about creating wordpress template & i have to make web design do you help .which site is usefull for me . could help teach me thanks.

ertert
Jun 29, 2011 at 9:10 am

rtertwertqwertwe

EthanTrembley
Jul 3, 2011 at 10:36 am

I help teach you. I best web design in world. I strong. I are best. I are baboon!

casey
Jul 13, 2011 at 11:39 pm

me is a baboon too

Prasad
May 31, 2011 at 7:04 am

Nice article.

Here you will find free plugins and lot of articles related to wordpress.

http://www.wordpressstop.com

Keep Smiling.

snowvil
Jun 1, 2011 at 10:48 pm

awesome tutorial. the demo files helps a lot. thanks soo much

wahyudi
Jun 8, 2011 at 2:38 am

Thanks for sharing knowledge and it’s really useful

Manisha
Jun 14, 2011 at 4:49 pm

Wow – This tutorial is awesome. Reckon I understand WP core part. Thanks!

Will
Jun 15, 2011 at 8:39 am

I think im being a be stupid but I didnt understand the splitting it up stage as I didn’t know hat php code I need to add to the header and footer etc.

I have tried another method of putting it in to wordpress but it hasn’t worked very well . see below

could someone help me make my site into a template.

willkerswell.com

[email protected]
would be sooo help full

pimsainnum
Jun 15, 2011 at 10:36 am

Thank you for tutorials
I find some code for add image slide to theme.
To configuration in theme .

Find Some Code
Jun 15, 2011 at 10:37 am

My Web site is using Joomla template.
I want to create wordpress theme for free download.
Thank you for share.

Health tips
Jul 22, 2011 at 4:06 pm

I also recommend you WordPress, its better platform for blogging as I’m transferred from Joomla to Wp.

Liki
Jun 16, 2011 at 2:07 am

It’s very useful to learn wordpress in design~!!

buggush
Jul 1, 2011 at 3:05 am

It’s very useful to learn wordpress in design~!!

Sumitra
Jul 4, 2011 at 12:42 am

Nice… I am experimenting on this… :)

raju
Jul 4, 2011 at 8:42 am

hi ererybody this is very useful for biggners templet integration

sarankumar
Jul 6, 2011 at 2:21 am

one of the best wordpress theme making tutorial available in the net.thanks for your great works.:)

GoldeN
Jul 6, 2011 at 2:06 pm

Hey! many thanks for sharing such valuable information here, especially for me :)
I’m pretty sure can design my won template by myself rite away.

complex41
Aug 23, 2011 at 1:26 pm

And then he handed you the thirty-five 45

SEO
Jul 8, 2011 at 3:37 am

Very detailed. Easy to follow.

Saxophones for sale
Jul 14, 2011 at 11:00 am

Very nice article. It is very useful for me.

Real Estate Investing with Boris
Jul 20, 2011 at 3:30 am

I will now embark on this journey of customising a wordpress template! :D

Punarvasu
Jul 21, 2011 at 7:26 am

Thank you so much… finally I learnt converting customized design into wordpress theme!!!

d
Jul 23, 2011 at 8:46 am

adasdasdasda

DSS
Jul 25, 2011 at 10:39 pm

Thank you. I will to start a wordpress.

Ruben
Jul 26, 2011 at 8:06 am

it doesn’t work for me =( . I stopped in the first step i put the theme glossyblue in wp-content/themes and it gave me an error in the funtions.php file, someone can help me with this? this is beacuse i have the latest wordpress version?

Wordpress Themes
Jul 28, 2011 at 7:13 am

Great tutorial, many thanks!

Paul
Jul 28, 2011 at 3:45 pm

followed the tutorial quite well but when i try to activate the theme it crash the dashboard. I have to clear my database and reinstall wordpress to get it working again. can’t see where i have gone wrong.

game
Jul 31, 2011 at 9:52 pm

The data that detail clearly.

eddie
Aug 2, 2011 at 9:57 am

very well explained tut !! thanks for sharing the insight with simple easy to follow steps

jewel
Aug 6, 2011 at 10:36 am

Awesome!!!!!!!!!!!
This is so nice tutorials for Beginner

Anna
Aug 18, 2011 at 5:45 am

Oh it realy is! I have got so much new about wordpress from this site!

Mark
Aug 8, 2011 at 1:13 am

Informative|Interesting|Insightful…

Your Special Photos
Aug 11, 2011 at 4:45 pm

Great tutorial. Really clear and helpful instructions. You’ve given me the inspiration to try and create a WordPress site from one of my designs. Thanks for sharing.

Goryo
Aug 14, 2011 at 11:34 am

Nice… Just very nice!

NIMROD
Aug 18, 2011 at 3:39 am

good tutorial!! tnx you man :)

xbox 360
Aug 25, 2011 at 10:16 pm

It is the most complete.

arama motoru optimizasyonu
Sep 1, 2011 at 7:46 am

Excellent! Your article has a ton readers. How did you get so many viewers to look at your site I’m jealous! I’m still studying all about posting articles on the web. I’m going to look around on your blog to get a better understanding how to get more visable. Thank you!

Ottoman
Sep 1, 2011 at 10:01 am

i war not user to comment you this article.. but i want to say that.. we want see your new articles on this blog.. see you..

ankara hosting
Sep 1, 2011 at 11:40 am

Well, I am so excited that I have located your post because I have been searching for some information on this for almost three hours! You’ve helped me a lot indeed and by scaning this post I have found many new and useful info about this subject!

Kullanılmış Paçavra
Sep 2, 2011 at 9:45 am

Thank you for any other informative website. The place else may just I get that kind of information written in such a perfect manner? I’ve a challenge that I’m just now operating on, and I have been on the look out for such info.thanks

Fatih Güloğlu
Sep 2, 2011 at 10:13 am

nice portfolio i really appriciate it

aaaa
Sep 2, 2011 at 10:40 am

i war not user to comment you this article.. but i want to say that.. we want see your new articles on this blog.. see you..

sdgsdg
Sep 4, 2011 at 5:20 am

This site has got a lot of really useful stuff on it. Thanks for informing me.

Stephanie
Sep 7, 2011 at 11:54 am

This series is the best for beginners – it’s what helped me finally “get it” and be able to create my first WordPress theme for my portfolio. I now am a WP dev for a living. Your tutorial series is the one I always recommend to beginners. Thanks for providing such an amazing, easy-to-understand resource!

asd
Sep 21, 2011 at 6:51 am

your post was very usefull! thanks

If anyone wants a custom made wordpress themes please let me know. here is my fiverr.com gig: http://fiverr.com/cmitsakis/make-a-unique-wordpress-theme you will get your own unique wordpress theme for only $5! an insane price only for a limited time!

Melody
Oct 4, 2011 at 6:16 pm

Thanks for the great tutorial! I wonder what about if I don’t install wordpress locally? Instead I have wordpress install with bluehost? That’s what I had already done. Can I still build a custom wordpress theme? I am a 100% beginner with database and PHP.

Melody
Oct 4, 2011 at 6:19 pm

Hello! Thanks for the great tutorial! I wonder what about if I don’t install wordpress on my local computer? Instead I have it install with bluehost. That’s what I had already done. Can I still build a custom wordpress theme that way? I am not a PHP programer. I only know the front-end coding, HTML and CSS.

FreeStuffBag
Oct 6, 2011 at 11:02 am

Hello, you need to learn to modify the templates WP but in reality I have no knowledge of PHP.
I would like to include in the index with all categories last 3 entries each. I’ll try. Thanks friend.

jk
Oct 7, 2011 at 12:02 am

yuiu

page
Oct 14, 2011 at 6:35 pm

look, you realy think so?

Nate01
Oct 16, 2011 at 8:44 pm

My friend, your are a brilliant. This tutorial is tops in my books. And thanks for the template download, made life a lot easier for someone setting up a wordpress site for the first time. Thanks again, have a virtual drink on me.

David
Oct 18, 2011 at 1:39 pm

This is basic tutorial, what about advance conversion? Can you explain it please?

Andy
Oct 18, 2011 at 2:49 pm

Good summary. I’d like to see this fleshed out even more. I’m halfway through building my first custom theme and still finding my feet.

The challenge I’m finding at the moment is how to make sure all the default widget types are styled acceptably. Of course, Firebug is helping here, to identify all the classes I need to specify…

The other issue I’m facing is understanding templates… For example, I’ve only just realised that the Calendar widget will output to archive.php

ahmad arafa
Oct 18, 2011 at 7:27 pm

really nice , that’s really helps
thanks for sharing

Saad
Oct 20, 2011 at 5:00 pm

Hi,

I have some questions. Can you please email me so I can come back to you? Facing some problem :(
Regards,
Saad

Koming
Oct 22, 2011 at 4:02 am

very nice tutorial, “my dream is come true” can make own wordpress themes…. Thanks Nick :D

aaa
Oct 24, 2011 at 8:53 am

aaa

Rowela Alzona
Nov 3, 2011 at 6:24 pm

Thank you very much for this wonderful tutorial. Well said clear and intact. Keep it up sir :) – Regards

chat odasi
Nov 8, 2011 at 6:52 pm

a very dedicated service and can be applied anywhere you want and get better results. Excellent brief and this article helped me alot. Say thank you I looking for your information

xqvdgdwnza
Nov 9, 2011 at 4:50 am

QuFKUF akfmkdqcupge

Ubaid
Nov 12, 2011 at 1:21 am

Very nice

Lyrics
Nov 16, 2011 at 11:32 am

Easy explain! I will try it! thanks !

Roma
Nov 17, 2011 at 12:38 pm

I followed all the steps but when I go to preview my new theme the page is completely blank. What have I done wrong!?

FYI using WordPress 3.2.1 and WAMPServer 2.2

Saved all .php files to c:\wamp\www\wordpress\wp-content\themes\glossyblue-html files

Jannik R.
Nov 21, 2011 at 5:05 am

Hello, thanks for this great tutorial, you helped me find my way into WordPress and thanks to you I´m building beautiful WordPress themes :)

Kamias
Nov 22, 2011 at 8:28 am

Very good tutorial article , thank for information.

Seeof
Nov 28, 2011 at 7:37 am

thank for tutorial with better explanation, i like your web site i will visit it again next time. good work and thanks

johanso
Nov 29, 2011 at 5:43 pm

Very nice,, muchas gracias por este tutorial… Very nice

adrian
Dec 4, 2011 at 12:18 am

8. Header.php

There is no in the index.html file

eian
Dec 4, 2011 at 1:11 am

I am confuse on 8. Header.php.
Open the index.html file. Cut from the top to where the ends, paste it in a new PHP file, and save the file as header.php.

there’s no in the index.html file. header.php contains , why save it in a new file when it already contains the same content? could anybody clarify me on this. tnx.

Lee
Dec 5, 2011 at 4:03 pm

I attempted to build a custom html/css based wordpress theme where the background image extended from the header to the end of the body container. In other words, instead of a header.gif image, I created a main background image. Check out mymobilebarista dot com to see the example. Could you tell me how to add a main background image instead of a header image to the custom theme? I also added a footer background image for the footer container.

Aminul
Dec 7, 2011 at 8:42 am

Wow! very nice tutorial. Really it is helpful.
Thanks

Abhishek
Dec 9, 2011 at 1:00 am

very nice and its very helpful………….

Kurtz
Dec 9, 2011 at 6:31 am

this tutorial is very usefull, woow, I can make a theme my self.. thanks

Ary Wibowo
Dec 11, 2011 at 10:22 pm

wow nice tutorial… thanks

Patrick Enyia
Dec 22, 2011 at 12:17 pm

This post is about the best thing that has happened to my professional career in 2011.
I have a website and I need a blog to look like the website. My problem has been how to customise it. But, with the information in this site, I am sure I can do it.

Thanks.

secret design art
Dec 30, 2011 at 9:51 pm

Thank you on awesome tip. Keep doing awesome job. ;) THX one more time.

maroc wadifa
Jan 10, 2012 at 2:50 pm

awesome explanation ; this is going to my favourite bookmark tab!

Alexander
Jan 11, 2012 at 3:42 am

Exactly what ive been looking for. Thanks for the Tutorial

spring valley vitamins
Jan 20, 2012 at 4:51 am

definitely, a BIG BIG deals.thx, for article

Simon
Jan 22, 2012 at 11:00 am

Thanks A lot!

Erika
Jan 30, 2012 at 7:32 am

Thanks a LOT for this amazing tutorial.

Amitabha Roy
Jan 31, 2012 at 3:59 am

Hi, I don’t know PHP but with the help of this post I’m able to develop WordPress Themes now. Thanks.

Alex-Web design Ireland
Jan 31, 2012 at 11:07 am

Very helpful tutorial on builder custom WordPress templates there. Not a PHP expert but working with this really helps. Thanks for sharing.

suresh
Feb 9, 2012 at 10:04 am

It is very helpful to new learners how to create a new theme to their website…
I wanna say thank’s for this..

DBosch
Feb 16, 2012 at 7:28 pm

I’d love to see updated version of the tutorial but most online tuts are ancient.
Lots of things changed in wordpress. It has now new html5 structure, new calls new functions, I’d seek more updated information then this. This tut is old. WordPress creates its own core CSS IDs that shouldnt be ignored etc etc…

Desirae
Feb 20, 2012 at 1:18 pm

If anyone is trying this tutorial and finds it hard to follow because there are the twentyeleven and twentyten themes in the latest versions instead of the default, they can download the default theme from the wordpress website. The URL is: http://wordpress.org/extend/themes/default

Kevin
Feb 20, 2012 at 8:03 pm

This was great. I have a new understanding of wordpress.. I do have a problem however, ..
I get this error ” Parse error: syntax error, unexpected T_ENDWHILE in /home/brown/public_html/wp-content/themes/glossyblue_/footer.php on line 12 ”

Can you Help ?

Elitefox
Feb 27, 2012 at 5:32 pm

Wow, custom made wordpress… Excellent job.. Worthy Website i found :)

APrather
Mar 4, 2012 at 9:49 am

Now I finally understand a thing between HTML and WP. Thank you for taking your time explaining this.

Richard
Mar 5, 2012 at 3:52 pm

Finally i understand how the wordpress works. Thank you for this sharing, you help me a lot :)

ROHIT
Mar 16, 2012 at 1:04 am

Some Pictures are not complete which you have provided such as :
>> “Recent Comments” topic etc….

Do Something of that….
Else, very well explained and helpful topic Provided…
THANKS.

ranazain
Mar 16, 2012 at 5:11 am

Thank you on awesome tips. Keep doing awesome job. ;) thanks one more time. GOD bless u !

Krsiak Daniel
Mar 16, 2012 at 11:31 am

4 years later for me to found this post
but nice anyway and informative indeed

wisai
Mar 18, 2012 at 2:34 am

Hey, Thanks.
Helpful!

Ankit
Mar 18, 2012 at 3:55 pm

Hello Sir/Madam
Give me information that the wordpress easily customize and easily customize the menubar in wordpress.

Simo
Mar 23, 2012 at 12:30 pm

This is meant to be used for wordpress websites hosted on private servers right? You can’t do this on a wordpress blog hosted on wordpress.com?

converse basket
Mar 27, 2012 at 5:19 am

The scrapbook pages are SO precious – I love the one in the pumpkin patch especially. GREAT costumes through the years, and wonderfully documented for posterity! The pumpkins turned out really great, good job! I’m with you on staying behind the camera for THAT job, lol!
I really love the ghost and skulls treats – Lisa, you are the Queen of Creativity!
And oh how I love that Cruella costume – awesome!

converse basket
Mar 27, 2012 at 5:20 am

It is wonderful for visitors at the Hubbard museum to be directed to the Copper Shop to see and hear of the work being done.

What a super post! I love your scarecrows! The scrapbook pages are SO precious – I love the one in the pumpkin patch especially. GREAT costumes through the years, and wonderfully documented for posterity! The pumpkins turned out really great, good job! I’m with you on staying behind the camera for THAT job, lol!
I really love the ghost and skulls treats – Lisa, you are the Queen of Creativity!
And oh how I love that Cruella costume – awesome!

kk
Mar 29, 2012 at 5:37 am

this is realy good website for learning wordpress

Petra
Mar 30, 2012 at 11:16 pm

Do you know if there’s a plugin to create a header with multiple rotating images?

φωτοβολταικα
Apr 6, 2012 at 10:59 am

There is a “big road” that i must travel to do all that but i will try to create my custom theme. Thanks a lot for your help

antallaktika
Apr 9, 2012 at 1:01 pm

Yeah its easier to take a ready theme but its awesome to have a unique layout.

Ted Akhtar
Apr 15, 2012 at 3:21 pm

Today, while I was at work, my sister stole my apple ipad and tested to see if it can survive a forty foot drop, just so she can be a youtube sensation. My apple ipad is now destroyed and she has 83 views. I know this is totally off topic but I had to share it with someone!

Chat
Apr 29, 2012 at 7:20 pm

Nice themes, thank you for help

Adam
May 1, 2012 at 10:35 am

Great site, found all the info really helpful. now to create my first blog

bitkisel
May 2, 2012 at 1:21 pm

Nice themes, thank you for help

Ramesh Vishwakarma
May 5, 2012 at 2:46 pm

Its good but some code are not displaying properly in image.
can you do somthing for that.

Ramesh Vishwakarma
May 5, 2012 at 3:13 pm

Sorry I found your source file so all code is already there thanks

Tom Charland
May 7, 2012 at 3:31 pm

I have been trying to find a good resource that would help me both understand building a theme and going through the actual build. Let me just say that you’re a lifesaver! Thanks a lot for the helpful details!

Zag IT
May 9, 2012 at 10:45 am

Thank you for this detailed tutorial. And congratulations for the design of your website. I love the static menu on the left hand side with transparent background. Very inovative!

I’ll give it a try and see if i can create my own WordPress template… my main concern comes from the menu. I’m afraid it’s hard to have very stylish menu dynamically generated at runtime…

Anyway, thanks a lot for the good work!
Aymeric.

elmaton04
May 10, 2012 at 1:22 pm

I took a few shortcuts since this is still too complex and I got it working!

Mike
May 10, 2012 at 4:10 pm

This looks great, except when I get to the copy/paste HTML to the PHP files… this guide was created in 2008 and the newest WP technology looks like it’s using HTML5 and I’m having trouble applying the 2008 guide to this 2012 WP technology. There are more PHP codes in the default theme that are not mentioned in this guide… I’m not sure if I need to adapt to the 2012 version or ignore the other PHP tags and HTML5…

Shwe Room
May 12, 2012 at 5:45 am

Great Post!
Thank for sharing…

semanticlp
May 16, 2012 at 11:47 pm

Excellent post, I will try to build one myself.

landingpagedesign
May 17, 2012 at 12:02 am

Glad to found this post, I will do follow this post to learn the conversion from html to word press theme.

bessy
May 27, 2012 at 4:09 am

great is nice

Sagar
May 27, 2012 at 8:33 pm

Thanks Mate!

mayuri
May 29, 2012 at 5:45 am

Very nice…..

john
May 30, 2012 at 6:24 pm

is there any newer version of this??

Shawn
Jun 1, 2012 at 3:28 pm

Thanks a lot. I’ve looked at about a billion sites trying to make sense of this and this is by far the most logical way to do things. Cheers!

Saima
Jun 5, 2012 at 1:50 am

I’ve been doing some research around this topic. Your article is very helpful, thanks. A great book I got introduced to today, I highly recommend it! Building WordPress Themes from Scratch: http://goo.gl/rsdGS

Hope this helps someone. :)

Blagdon Manor
Jun 10, 2012 at 4:19 am

Just what I was looking for. This is probably one of the best tutorials on this subject. Thanks for posting.

Creative Engine Room
Jun 10, 2012 at 4:20 am

Absolutely lovely! Thank you for sharing a great article & how-to-do-it information.

Sheryl
Jun 13, 2012 at 2:48 pm

This is definitely a great article. Hooray!!! I finally found one that actually helped me. It’s very self explanatory and simple to where anyone can follow to design their very own. Thanks!!!!

M.ibrahim khan marwat
Jun 17, 2012 at 4:40 am

very nice

Arpita Paul
Jun 27, 2012 at 2:29 am

It is a very helpful tutorials. Beginners can found all in one.

Fran
Jun 27, 2012 at 3:39 pm

I’m really stuck. When it says on step 8 to open header.php and copy and replace the tags that require PHP what does that mean? My code looks nothing like the image, I can’t find the thing you’re talking about. Copy what, and replace with what? The header.php file from the default folder looks absolutely nothing like this one you show on that step.

cambalkon
Jul 5, 2012 at 10:39 am

Thanks for all your help, I like really nice themes.

BlogStreet
Jul 10, 2012 at 9:21 pm

So cool! Do you have an equivalent post for creating a Plugin from Scratch, I am planning to create a plugin to create online multiple choice exams!

This post plus a post on creating a plugin would help me a lot! Thanks again!

Nut
Jul 19, 2012 at 4:17 am

Thanks a lot for good stuff ;)

Blogger Finds
Jul 25, 2012 at 8:47 am

Awesome thats cool for learning wordpress theme creation.

φωτοβολταικα
Jul 25, 2012 at 4:13 pm

You made it look so easy! How many websites did you have on your portfolio???

φωτοβολταικα
Jul 26, 2012 at 6:13 pm

Thank you on awesome tips. Keep doing awesome job. thanks one more time. GOD bless u !

Cafe Porlock Weir
Jul 29, 2012 at 6:24 am

Great post. Really inistructive … I’m planning to move my website to a WordPress platform and your tutorial was very helpful. Thanks for posting.

chinese infertility
Jul 30, 2012 at 8:44 am

The method that you have put across these uncomplicated suggestions make
them appear to be pretty logical and refreshingly outcome focused –
especially those in relation to emotional aspects and positions – I actually knew about timing and wellness
factors.

current mortgage rates
Aug 3, 2012 at 11:25 am

Greatest Mortgage Rates – Which major mortgage loan provider has
the greatest mortgage rates today? You can easily identify the answer here.
This site is devoted to assist you hire who has the most effective mortgage prices
in the existing market, so you can easily save funds when making your largest and also greatest acquisition

infertility treatment options
Aug 5, 2012 at 3:08 am

Attention-grabbing opinions. Appears like the majority of them accept the details provided in your
write-up. I will hold my responses till I practically check out if it works or not.

free-weight bodyweight cable
Aug 5, 2012 at 5:00 am

It’s a shame you don’t have а ԁonate buttοn!
Ι’d most certainly donate to this superb blog! I guess for now i’ll settle foг bοokmarκing and addіng
your RSЅ feeԁ to mу Gоogle account.
I look fοrwarԁ to fresh upԁates and ωill share this
sitе with my Facеbook grοup. Chаt soon!

best places to get a home loan
Aug 6, 2012 at 7:09 pm

Which banks are the very best for property
credits in regards to mortgage costs?

Computer Squad
Aug 7, 2012 at 8:01 am

Provide onsite technical support for Computer repair, PC upgrade, data recovery/backup, printers or any peripherals troubleshooting, software installation and computer setup. Our services cover Toronto, Mississauga, Etobicoke, North York, Scarborough, Markham, Vaughan, Richmond Hill and Brampton.

bedrooms plus
Aug 11, 2012 at 2:16 pm

Your bedroom should be literally and metaphorically quiet and straightforward.

konya kompresor
Aug 12, 2012 at 2:45 pm

konya kompresor, kompresor, kompresör, vidalı kompresör, comressor, air, 2 el kompresör, ikinci el kompresör, hava kurutucu

ikinci el, 2 el
Aug 12, 2012 at 2:45 pm

ikinci el,

vidalı kompresor
Aug 12, 2012 at 2:46 pm

vidalı kompresor, kompresor, kompresör, vidalı kompresör, comressor, air, 2 el kompresör, ikinci el kompresör, hava kurutucu

ikinci el vidalı kompresor
Aug 12, 2012 at 2:47 pm

ikinci el vidalı kompresör, kompresor, kompresör, vidalı kompresör, comressor, air, 2 el kompresör, ikinci el kompresör, hava kurutucu

2 el vidalı kompresor
Aug 12, 2012 at 2:48 pm

2 el vidalı kompresör, kompresor, kompresör, vidalı kompresör, comressor, air, 2 el kompresör, ikinci el kompresör, hava kurutucu

hava kurutucu
Aug 12, 2012 at 2:48 pm

hava kurutucu, ikinci el vidalı kompresör, kompresor, kompresör, vidalı kompresör, comressor, air, 2 el kompresör, ikinci el kompresör, hava kurutucu

kompresor, compressor
Aug 12, 2012 at 2:49 pm

komprosor, ikinci el vidalı kompresör, kompresor, kompresör, vidalı kompresör, comressor, air, 2 el kompresör, ikinci el kompresör, hava kurutucu

dizel kompresor
Aug 12, 2012 at 2:50 pm

dizel kompresor, ikinci el vidalı kompresör, kompresor, kompresör, vidalı kompresör, comressor, air, 2 el kompresör, ikinci el kompresör, hava kurutucu

pistonlu kompresor
Aug 12, 2012 at 2:50 pm

pistonlu kompresor, ikinci el vidalı kompresör, kompresor, kompresör, vidalı kompresör, comressor, air, 2 el kompresör, ikinci el kompresör, hava kurutucu

hava kompresor
Aug 12, 2012 at 2:51 pm

air compressor, ikinci el vidalı kompresör, kompresor, kompresör, vidalı kompresör, comressor, air, 2 el kompresör, ikinci el kompresör, hava kurutucu

kompresor satış
Aug 12, 2012 at 2:51 pm

kompresor satış, ikinci el vidalı kompresör, kompresor, kompresör, vidalı kompresör, comressor, air, 2 el kompresör, ikinci el kompresör, hava kurutucu

kompresor servis
Aug 12, 2012 at 2:52 pm

kompresor servis, ikinci el vidalı kompresör, kompresor, kompresör, vidalı kompresör, comressor, air, 2 el kompresör, ikinci el kompresör, hava kurutucu

kompresor tamir
Aug 12, 2012 at 2:53 pm

kompresor tamir, ikinci el vidalı kompresör, kompresor, kompresör, vidalı kompresör, comressor, air, 2 el kompresör, ikinci el kompresör, hava kurutucu

silobas kompresor
Aug 12, 2012 at 2:54 pm

silobas kompresor, ikinci el vidalı kompresör, kompresor, kompresör, vidalı kompresör, comressor, air, 2 el kompresör, ikinci el kompresör, hava kurutucu

marangoz makinaları
Aug 12, 2012 at 2:54 pm

marangoz makinaları, ikinci el vidalı kompresör, kompresor, kompresör, vidalı kompresör, comressor, air, 2 el kompresör, ikinci el kompresör, hava kurutucu

2 el marangoz makinaları
Aug 12, 2012 at 2:55 pm

ikinci el marangoz makinaları, ikinci el vidalı kompresör, kompresor, kompresör, vidalı kompresör, comressor, air, 2 el kompresör, ikinci el kompresör, hava kurutucu

Authorselvi
Aug 24, 2012 at 6:34 am

The above screen shots about wordpress page creation and Php basic codings are very useful for who are learning wordpress. Want to know more details about wordpress go to this link http://www.authorselvi.com.

lllll
Sep 4, 2012 at 4:20 am

sssssssssssssss

aaaaaaaaa
Sep 4, 2012 at 4:20 am

aaaaaaaaaaaaaa

bbbbbbbb
Sep 4, 2012 at 4:20 am

.

bbbbbbbb
Sep 4, 2012 at 4:21 am

,

bbbbbbbb
Sep 4, 2012 at 4:21 am

a

Alquiler yates Ibiza
Sep 4, 2012 at 2:57 pm

The above screen shots about wordpress page creation and Php basic codings are very useful for who are learning wordpress.

Alquiler yates Ibiza
Sep 4, 2012 at 2:57 pm

Codings are very useful for who are learning wordpress.

WordPress Web Designer
Sep 6, 2012 at 1:09 am

thanks a lot for this nice guide I will publish on my site

Angela
Sep 9, 2012 at 5:29 pm

This is great. Thank you.

Joe
Sep 10, 2012 at 1:48 pm

Thanks for this, I just started developing WordPress themes and this was a really nice eye opener into how basic it is. Thanks for posting this content.

Priyanka
Sep 11, 2012 at 2:09 am

this was awesome tutorial..thanks a lot

Priyanka
Sep 11, 2012 at 2:15 am

I have been struggling over months figuring out this issue,finally got one.. thanks a lot

aman
Sep 28, 2012 at 1:00 am

hello priynka

kiki
Sep 23, 2012 at 10:47 am

How to Change the website background plzzzz

Sohail Ashraf
Sep 29, 2012 at 3:29 am

Its really nice and use full information thanks alot

Aris Designer
Oct 7, 2012 at 1:37 am

Thaks for your tutorial, but i want to ask you, How to make Image slider on top post or header image slider ? thanks

Heidi Mueller
Oct 30, 2012 at 1:54 pm

This is a great tutorial. Although dated, it is still valid. It would be useful if you could do a similar tutorial using your base theme as that is responsive.
Thanks for your great site.

blah
Nov 22, 2012 at 8:49 am

blah blah blah

Reinaldo Lopez
Mar 22, 2013 at 8:13 pm

Awesome website…Even after all these years of using wordpress for my sites I didn’t know much about coding but you have cleared a few things but need to visit more to read more in-depth to wrap my brain around all this coding. Thanks for the high quality information provided. Will be back soon.

Reinaldo

外汇foreign exchange
Jun 7, 2013 at 5:18 pm

Typically I do not examine report with websites, but I would like to claim that that write-up pretty required my family to perform therefore! Your composing flavour has been pleasantly surprised everyone. Many thanks, very nice post.

faiq ali
Jun 11, 2013 at 2:32 am

i want to make single page theme of worpdress
will u help me plz

Jeffery
Jun 11, 2013 at 4:27 am

So, how are these groups-prime targets for lenders in recent years-going to get protected with this new era of expanded government oversight of
America’s financial system. It is just not stated what’s reasonable but clearly the procedure
used to define this for those products must be
documented by any party to whom this Act may apply.
The law was created to protect consumers against unfair and fraudulent lending practices.

Here is my site – dodd frank mortgage reform :: Jeffery :
:

Gabriel
Jun 11, 2013 at 4:39 am

Having the handle and blade all one piece provides you with have the strongest knife available.

The Ultimate Survival Knife better be lightweight, an easy task to
conceal, complete the task for which it is intended and be adaptable
to the situation. Over the years, my perception of the Best Survival Knives have changed
to the better.

Also visit my website :: axen custom knives and
swords (Gabriel)

Deepak Singla
Apr 18, 2017 at 5:22 am

Building a WordPress theme is what every beginner or expert desires the most and this tutorial serves a great help to them.
When I design my own WordPress themes I prefer going for TT owing to it’s flexibility and compatibility with major CMSs plus it doesn’t require any coding knowledge allowing me build themes with ease.

Master
Jun 17, 2017 at 5:20 am

Try Visual composer + Yellow pensil. Easiest way

Daemon Harry
Aug 20, 2018 at 4:29 pm

Thanks for sharing i really love and understand the processes

Sean
Nov 1, 2018 at 5:34 am

Although wordpress has. I’ve on site ce you first posted it, there is some great nuggets of info here. Thanks for sharing this.

Colibri
Nov 21, 2018 at 7:24 am

Ive made WordPress sites in the past, but Ive never tried building my own custom theme. Till now! Turns out its not as hard as I thought itd be, thanks to this helpful tutorial
I wanted to keep my custom WordPress theme simple, so after following Steps 1 and 2 of the tutorial I backtracked and pared down a lot of the code, eliminating the sidebar and archive and things like that. I also didnt bother with any widgets. Id named my theme SuperSimpleTheme, after all.

Jason
Mar 3, 2019 at 12:25 am

Wonderful

Post Comment or Questions

Your email address will not be published. Required fields are marked *