Among blogging applications, WordPress probably has the largest number of great-looking themes to use. Still, there are hundreds of free and even open source web templates not yet converted to work with WordPress. Knowing how to make this themes work with WordPress broadens your choice of design to use for your blog.
Converting a web template is fairly easy if you take the time to learn how to do it. I wrote this guide for someone like me a few months back — eager to use a great looking web design and yet not knowing how to start converting it to work with WordPress. If you want to view a video tutorial on how I turned this open source web design into this WordPress theme, click here for the blog post.
The Tools
In converting web templates into WordPress themes, I use Aptana and Cream (my preferred text editor). I use Aptana to visually edit the template and incorporate the changes I want done. I used to do this with Dreamweaver (I wrote a tutorial on how to use Dreamweaver to edit WordPress themes) but ever since I tried Aptana, an open source software, I’ve never gone back to the iconic WYSIWYG tool.
Where to download templates
I prefer web templates released under an open source license so I usually get my templates at Open Source Web Design () and Open Web Design.
The advantage of using open source templates is that you are allowed to change and redistribute it. But if you only plan to create a custom WordPress theme for your site and not redistribute it, you can browse through the hundreds of websites offering free web templates.
Tips on choosing a template
Choose designs done in CSS and XHTML. Most of the free and open source web templates offered for download are now done in CSS and XHTML and authors usually highlight this fact either on the web template itself or in the readme file that comes with it.
Validate the design using website validation service. You can use validator.W3.org. Again, most templates contain a link within the page that would take you to the result of W3′s validation of the page.
Choose designs not using HTML tables to render the page’s columns. Tables are great for presenting tabular data such as statistics but not for page layout. Most competent web designers will tell you never to use tables for laying out your web page.
Other resources
The WordPress Codex is an extensive documentation on various aspects of the blogging script. In converting a web template into a WordPress theme, you should check the template tags section of the WordPress Codex to see what tags you’d need to generate blog items such as the post headline, date, comments link etc. Be sure to read about the WordPress Loop, the code that generates blog post content.
You can simplify the template conversion by keeping as reference a copy of a working WordPress theme. You can just then copy snippets of code from the theme for use in your own template. You might also want to check these pieces of great WordPress theme code that I’ve collected.
Organize theme files
After downloading the template you want to convert, check how the files are organized. If the stylesheet is not named style.css, rename the file. Add style information to the CSS file, including your name for the WordPress theme, just copy what other WordPress theme authors did by opening their style.css file. Don’t forget to edit the CSS filename in the HTML file so that you can still preview the design later when you open it in Aptana.
If the images are saved in the root directory, create an image directory and save all the images there. This isn’t really required but it makes for an organized way of doing things. When you do transfer images, make sure that you edit the file locations of all img calls in the HTML and CSS file.
Finalize design
Open the HTML file in Aptana and finalize changes you want done on the design. You might want to play around with the type of font used or its sizes or the dimensions of the web templates’ columns. If you want to completely change the template’s layout, you can spend time editing various components of the template, including the images that come with it.
It is important, however, that you finalize the design at this stage since it will be cumbersome if you do design changes when the files have been cut up into different WordPress theme .php files.
Most free web templates typically contain several sample posts to show how articles, headlines and author links are formatted. Leave only one article in the template. You will be inserting the WordPress Loop in this part of the template later. Mark this part with <!-- WordPress loop here -->.
Mark up the template
In Aptana, go to Code View and mark up the parts of the page that you will be cutting up later into header.php, sidebar.php and footer.php. Just mark it up using <!-- Section starts here --> and <!-- Section ends here --> tags.
Create a new folder and name it after the WordPress theme name you chose and copy the style.css and image folder into it.
Cut design into different WordPress theme files
Open Cream and then go back to Aptana. Cut and paste the header, sidebar and footer parts of the theme, paste these into Cream and then save it as header.php, sidebar.php and footer.php. Save the remaining code in Aptana as index.php and insert php calls for the header, sidebar and footer: <?php get_header(); ?>, <?php get_sidebar(); ?> and <?php get_footer(); ?>.
Open header.php in Cream and insert elements such as the template tags for the page title, stylesheet, RSS feed, favorites icon. You can simplify this process by copying the codes in the header.php of a working WordPress theme. K2 is a good theme to copy from. You can also read about header.php in the WordPress.codex.
Here’s the code I usually add to the header.php of a template I’m converting:
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head profile="http://gmpg.org/xfn/11">
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
<title><?php wp_title(''); ?> <?php if ( !(is_404()) && (is_single()) or (is_page()) or (is_archive()) ) { ?> at <?php } ?> <?php bloginfo('name'); ?></title>
<meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /> <!-- leave this for stats -->
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" />
<link rel="alternate" type="text/xml" title="RSS .92" href="<?php bloginfo('rss_url'); ?>" />
<link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="<?php bloginfo('atom_url'); ?>" />
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<?php wp_get_archives('type=monthly&format=link'); ?>
<?php wp_head(); ?>
</head>
Open sidebar.php and then insert sidebar elements you want in your blog. Open footer.php and include information you want to display there.
Open index.php and include the WordPress Loop, the code that publishes your posts. You can read more about the WordPress Loop here. Again, you can simplify this part by copying pieces of code from a working WordPress theme.
The loop starts with:
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
Place this part above the part you marked <!-- WordPress loop here -->. Replace the article headline (usually between <h1></h1> or <h2> </h2 tags with <a href="<?php the_permalink() ?>" rel="bookmark" title='Click to read: "<?php strip_tags(the_title()); ?>"'><?php the_title(); ?></a>. What this does is generate the blog posts headline and link it to its post page. You can remove the link in the post page by using this <?php the_title(); ?> in single.php. After all, it doesn’t make sense for the title in the blog post page to be clickable and linked to the current page.
Replace the dummy text in your web template with <?php the_content("Continue reading '" . the_title('', '', false) . "'"); ?>. This generates the blog post article.
You can add other post elements such as author data and links or the date of posting. Just check the WordPress codex for their template tags.
End the loop with:
<?php endwhile; ?>
You can then add previous and next post links after this. Here’s the one I use:
<?php next_posts_link('« Older blog posts') ?> <?php previous_posts_link('• Newer blog posts »') ?></p>
After that, add this:
<?php else : ?>
<h2 class="center">Not Found</h2>
<p class="center">Sorry, but you are looking for something that isn't here.</p>
<?php include (TEMPLATEPATH . "/searchform.php"); ?>
<?php endif; ?>
After adding the Loop, save the file and then save it again as page.php (to serve as template for WordPress pages) and single.php (to serve as template for individual blog posts). You can then customize the files if you want, for example, a different presentation for individual blog articles or for the pages.
Add the comments tags in single.php <?php comments_template(); ?>.
Adding other theme elements
Add a comments.php to the your theme. What I do is copy an existing comments.php and then change its styling to reflect the stylesheet I’m using. Here’s a guide to comments.php in the WordPress Codex.
Add a 404 page template by copying an existing one from a working WordPress theme. Add a searchform.php, here’s a guide from the WordPress codex.
You can also add a category template by copying index.php and inserting customizations you might want done. Add an archives.php for your archives. Here’s a handy guide from the WordPress Codex. http://codex.wordpress.org/Creating_an_Archive_Index
After you’re done with the template files, upload the folder into your WordPress themes folder and then CHMOD the stylesheet and individual PHP files to 666 so that you can continue tweaking and editing it online.
Activate the theme, check for errors and continue editing and tweaking it.


79 responses so far ↓
Turning a web template into a WordPress theme: a video tutorial at Leon Kilat ::: The Cybercafe Experiments // Sep 1, 2006 at 3:52 pm
[...] Knowing how to turn any web template into a WordPress theme broadens your choice of designs to use for your blog. I created this video tutorial for someone like me a few months back: eager to attempt turning a great looking open source web template into a WordPress theme but not knowing how to start. If you want to read a tutorial based on the screencast, click here. [...]
Converting Any Template Into a WordPress Theme by Blogging Pro // Sep 2, 2006 at 1:08 am
[...] Converting Any Template Into a WordPress Theme Max Limpag shares a comprehensive guide about converting any web template into a WordPress theme. Converting a web template is fairly easy if you take the time to learn how to do it. I wrote this guide for someone like me a few months back — eager to use a great looking web design and yet not knowing how to start converting it to work with WordPress. [...]
Ataliba // Sep 2, 2006 at 1:59 am
Very, very good howto
links for 2006-09-02 — 7 seconden — Cuiusvis hominis est errare // Sep 2, 2006 at 8:19 pm
[...] How to convert any web template into a WordPress theme at Leon Kilat ::: The Cybercafe Experiments (tags: wordpress themes tutorial) [...]
frederikmisplon.be» Blog Archive » links for 2006-09-03 // Sep 4, 2006 at 2:22 am
[...] How to convert any web template into a WordPress theme (tags: tutorial webdesign wordpress) Je kan reageren, of trackbacken van jouw eigen site. RSS 2.0 [...]
links for 2006-09-02 en newdisco // Sep 4, 2006 at 8:52 pm
[...] How to convert any web template into a WordPress theme at Leon Kilat ::: The Cybercafe Experiments Como convertir templates normales a WordPress (tags: wordpress design tutorial webdesign template templates layouts layout howto) [...]
Wordpress Tutorials | nanoblogs[.de] // Sep 7, 2006 at 2:08 pm
[...] Etwas, das mir bei WP noch Kopfzerbrechen bereitet, ist das Template-System. IMHO wäre WP nicht so erfolgreich, wenn es nicht so viele (und gute!) Themes dazu gäbe. Jedenfalls erklärt Max Limpag, was man beachten muss, wenn man ein “fremdes” Template zu WP konvertieren möchte. Die Infos dazu sind auch nicht schlecht für jemanden, der ein WP-Template “from the scratch” erstellen möchte. Das ganze gibt es auch als Video-Tutorial. [...]
zoel // Sep 12, 2006 at 2:59 pm
nice, i will try!
Cybercafe Experiments: How to Convert Any Web Template Into a WordPress Theme « Lorelle on WordPress // Sep 22, 2006 at 9:07 pm
[...] Max Limpag of The Cybercafe Experiments has written a great guide on “How to convert any web template into a WordPress theme” so you can take any open source or free web design template and convert it into a WordPress Theme. Among blogging applications, WordPress probably has the largest number of great-looking themes to use. Still, there are hundreds of free and even open source web templates not yet converted to work with WordPress. Knowing how to make this themes work with WordPress broadens your choice of design to use for your blog. [...]
וורדפרס עברית » ?רכיון » עריכה מתקדמת של תבניות : מדריכי? מומלצי? // Sep 27, 2006 at 12:51 am
[...] How to convert any web template into a WordPress theme: מדריך מ-ע-ו-ל-ה המסביר בפירוט כיצד להפוך כל עיצוב HTML לתבנית של וורדפרס. מומלץ! [...]
Enlaces del día 27 de septiembre de 2006 » La brujula verde // Sep 27, 2006 at 1:31 pm
[...] Cómo convertir cualquier template web en un tema de WordPress, un excelente tutorial (en inglés) [Vía] [...]
The WordPress Podcast · Episode 7: digg.com, wp.com VIP hosting, what plug-ins do you use? // Oct 1, 2006 at 12:40 pm
[...] Max Limpag tells us of a tutorial on how to turn any web template into a WordPress theme. Standard Podcast [13:36m]: Play Now | Play in Popup | Download podPressPlayerToLoad(‘podPressPlayerSpace_26′, ‘mp3Player_26_0′, ’300:30′, ‘http://wp-community.org/podpress_trac/play/26/0/wordpress-podcast-007.mp3‘); [...]
How to convert any web template into a wordpress theme « Bloggitation // Oct 2, 2006 at 3:47 pm
[...] read more | digg story [...]
Roderik.org · Link // Oct 5, 2006 at 2:14 am
[...] How to convert any web template into a WordPress theme. [...]
WordPress » // Oct 7, 2006 at 5:00 pm
[...] How to convert any web template into a WordPress theme [...]
Shane’s Dev Site » Blog Archive » How to Turn any web template into a WordPress theme // Oct 9, 2006 at 2:07 am
[...] I was searching Google on how to turn a HTML template into a WordPress theme. I found a site called Leon Kilat:::The Cybercafe Experiments. I found exactly what I was looking for. I wanted to know how to turn just a simple HTML template into a WordPress theme. This site had the answer. Here is the exact post. This was a great deal of help for me, and I hope that it is for you! [...]
Web News Blog » Blog Archive » Today’s WordPress Resource- Teurning a template into a Theme // Oct 12, 2006 at 9:02 am
[...] I was searching google on how to turn a Web Template into a WordPress theme. I found a really good tutorial, also a video tutorial Click Here to see it on Leon Kilat::: The Cybercafe Experiments. [...]
~ How to convert any web template into a WordPress theme at Bakkouz!> // Oct 21, 2006 at 8:07 pm
[...] A tutorial on how to convert any web template into a WordPress theme yourself, its fairly easy for novices if you take the time to learn how to do it but its great and very easy to comprehend for developers and the likes. Click Here for the tutorial, Also for a video tutorial Click Here. [...]
好??如饺? : Blog Archive : links for 2006-10-22 // Oct 23, 2006 at 2:26 am
[...] How to convert any web template into a WordPress theme (tags: wordpress theme) [...]
Misunderstood at ThoaiOnline // Nov 13, 2006 at 1:37 pm
[...] http://max.limpag.com/2006/09/01/how-to-convert-any-web-template-into-a-wordpress-theme/ [...]
What is Popularity? | Macalua.com // Dec 9, 2006 at 1:25 pm
[...] I took one quick look at the posts mentioned by Michael and then scanned the metrics he used to rate each blog. Here’s how he defined popularity: 7. How to Convert any Web Template into a WordPress Theme (excellent read btw) [...]
links for 2006-12-17 at Bloganbieter.de // Dec 17, 2006 at 10:23 pm
[...] How to convert any web template into a WordPress theme Dieses Howto erklärt wie man mit ein wenig Aufwand aus einem Webseiten Design ein WordPress Template erstellt. (tags: WordPress, Template, Blogging) [...]
Osku // Jan 23, 2007 at 12:59 am
Excellent article, very informative.
Thanks for sharing!
O
betalabs DOT org » Blog Archive » test2 // Feb 28, 2007 at 8:47 am
[...] clipped from max.limpag.com [...]
Addies // Mar 22, 2007 at 2:11 pm
Hi,
It is great to read your blog, infact I will be sharing this blog with tons of other people very soon.
Let me introduce my skills to you. I have been practicing my graphics skills on Maya and 3d Max Studio Last year. I learned Flash and a little bit of dreamweaver, I used to make sites in frontpage before that time. I tried Adobe and did some practice on that.
NEVER EVER touced the coding side, I know HTML and can understand many things in that language.
Recently, two days ago I thought to learn PHP since I was feeling the neccessity.
I have seen this post for converting the web template to wordpress theme and I am so very happy to see this post as I can now convert my webpages to wordpress themes.
I am having hard time to understand the process. I have tried to seen the video but the quality is really low and can’t really understand the processes.
Can you make a clear video uploaded the YouTube or Please email me with very detailed process, I will try it and make a video. It will help others as well.
Please guide me with which langauges to learn and which of them can really help me edit wordpress themes and get in to this more and more.
Thanks A Million – I expect to get your 100% support
Max Limpag // Mar 23, 2007 at 1:30 pm
Hi Addies,
I am currently reworking my tutorials on WordPress theming. I will also be putting up a new video–one that, I hope, will be clearer. Thanks for the feedback.
Guy Cook // Mar 28, 2007 at 11:55 pm
Very nice job, I’ve already shared this with my ‘community’ of developers. Keep up the good work.
Addies // May 31, 2007 at 10:21 am
Hope you are having a great time Max.
Please let me know via email about the projects you are working on. I am interested in learning things.
Might be I can be of your help.
Good Going Max. Wish you best of Luck!
New Aptana IDE version makes Linux installation easy | Leon Kilat ::: The Cybercafe Experiments // Jun 11, 2007 at 1:51 am
[...] use Aptana whenever I have to edit a web template or convert one to a WordPress theme. Before I found Aptana, I used Dreamweaver. I wrote a post earlier on how to use Dreamweaver to [...]
Announcing WP-Subdued WordPress theme | Leon Kilat ::: The Cybercafe Experiments // Jun 12, 2007 at 4:21 am
[...] you want to learn how to turn any web design or template into a WordPress theme, you can read my previous post on it or view the video [...]
iroel // Jun 19, 2007 at 3:51 am
good tutorial.. i like this one article..
nice to meet you..
Les liens d’octobre 2006 .::::::. le blog de SkyMinds // Jun 26, 2007 at 11:55 pm
[...] Convert any web template into a WordPress theme [...]
How To Turn a Template into a Wordpress Theme at Wordpress Themes, Plugins, Blog Tips, Make Money Online >> WPthemesplugin.com // Jul 4, 2007 at 5:33 pm
[...] How to convert any web template into a WordPress theme [...]
Lines & Phrases » Blog Archive » Inspired by Anberlin // Jul 7, 2007 at 2:14 am
[...] to open Undivided Honesty than an Anberlin one? This caused me days of headache before I found a miracle article to help me make a WordPress layout easily. :p Posted in Updates, Internet, [...]
Comment transformer un template en un theme Wordpress : NicoFayet, le blog // Jul 18, 2007 at 2:08 am
[...] Comment convertir n’importe quel template en un thème WordPress [...]
Awwwpuppyawww.com // Aug 15, 2007 at 8:23 am
Thanks – you’re going to make a lot of puppy viewers very happy!
8 Wordpress Theme Tutorials You Don't Want To Miss | Blogging Bits // Aug 25, 2007 at 12:02 am
[...] How to convert any web template into a WordPress theme [...]
Hostimal // Aug 26, 2007 at 4:34 am
Great for the beginners or for folks who start using WP like CMS.
Der wilde Garten | links for 2007-07-09 // Aug 30, 2007 at 9:20 pm
[...] How to convert any web template into a WordPress theme | Leon Kilat ::: The Cybercafe Experiments Ein howto wie man beliebige „normale“ Webdesigns in ein WP-Them umbaut. Praktisch, wenn man WP mit einer normalen Seite kombinieren will. (tags: howto theme WordPress webdesign tutorials css) [...]
Kubrick and K2 WordPress Themes: Collection of Theme Tips « Lorelle on WordPress // Sep 8, 2007 at 7:59 pm
[...] Max Limpag offers “How To Convert Any Web Template Into a WordPress Theme”, a step-by step guide for using an free web template and converting it into a WordPress Theme, along with some tweaks and customization, using the K2 Theme. [...]
Blog Bloke // Sep 10, 2007 at 8:01 am
Thanks for this post. I’ve been looking a long time for something like this.
Cheers,
…BB
WordPress Theme Building Resources | J David Macor.com // Sep 17, 2007 at 8:01 pm
[...] How to convert any web template into a WordPress theme – This shows you how to take a template you have made or downloaded and convert it to a theme. [...]
The Unofficial Wordpress Quickstart Guide: From Start to Publish | SiNi Daily // Oct 25, 2007 at 9:24 am
[...] How To Convert Any Web Template Into A WordPress Theme How-to on converting ANY web template into a WordPress template. [...]
Mubeen // Nov 1, 2007 at 10:59 pm
Hi,
Thanks for writing such a great step by step guide. While i was searching for some missing codes in my WP theme development process, Google redirected me to this page. And Boy i love it.
Thanks i found my solution,
it was about relative path tag in WP…
Mubeen
pixey.de » Blog Archive » Tutorials Konvertierung von PSD zu CSS zbsp. für Wordpressthemes // Nov 24, 2007 at 7:35 pm
[...] How to convert any webtemplate into a wordpresstheme - hier wird erklärt wie man freie css templates ein wordpresstheme umwandelt [...]
Cliffordx // Dec 25, 2007 at 1:19 pm
Max,
I have unrelated question to WP..
Have you tried porting web templates to Drupal CMS?
Max Limpag // Dec 25, 2007 at 2:37 pm
Cliffordx,
Yes but what I did was use the design as reference and I just converted a stock Drupal theme to follow the design.
Indiaest // Jan 5, 2008 at 8:40 pm
Realy helpfully TIPS…Thanks..keep posting..Nice
Charity, Linux, WordPress | The BookmarkMoney Blog // Mar 22, 2008 at 9:36 am
[...] How to convert any web template into a WordPress Theme. [...]
BloggerDollar // May 29, 2008 at 10:35 pm
Nice information. I need to this for one of my new projects I hope I can do.
Inspired by Anberlin « Undivided Honesty // Jun 21, 2008 at 12:47 am
[...] to open Undivided Honesty than an Anberlin one? This caused me days of headache before I found a miracle article to help me make a WordPress layout easily. Stupid me for not finding it earlier. [...]
securitytechscience.com » Keep your theme whilst blogging // Jun 26, 2008 at 10:22 am
[...] http://max.limpag.com/2006/09/01/how-to-convert-any-web-template-into-a-wordpress-theme/ [...]
first theme | rishiblog // Jun 26, 2008 at 8:40 pm
[...] inspiration came from this wonderful article at limpag.com about this exact topic. Keen as mustard, I set about finding a nice theme, and stumbled upon the [...]
Randie // Jun 29, 2008 at 2:25 pm
Thanks for sharing this with us. Really enjoyed this article and learned a lot. Looking forward to reading more from you.
Over 50 of The Best Tutorials from 2008 (so far) « NI-Limits Blog // Jun 30, 2008 at 5:38 pm
[...] Convert Any Web Template Into WP Theme [...]
Rfos.net » Blog Archive » Keep your theme whilst blogging // Jul 3, 2008 at 11:33 pm
[...] http://max.limpag.com/2006/09/01/how-to-convert-any-web-template-into-a-wordpress-theme/ [...]
Table Of Contents Of Wordpress Tutorials, Helps, Tips and Tricks by aComment.net // Jul 15, 2008 at 1:32 am
[...] How to convert any web template into a WordPress the [...]
athul // Jul 19, 2008 at 5:04 pm
where can i find the tutorial for converting website template into blogger template
Hilary Chapman // Aug 2, 2008 at 4:44 am
Can you convert this WordPress theme to a blogger theme?
http://themes.wordpress.net/testrun
Converting a Template to a WordPress Theme // Aug 3, 2008 at 12:51 pm
[...] has another article, How to convert any web template into a WordPress theme, that goes into excellent detail for converting existing HTML templates to a WordPress template. [...]
Wordpress » Blog Archive » Convert any web template into a WordPress theme // Aug 18, 2008 at 12:57 am
[...] More … [...]
国外最好的wordpress初学者文章(原文) | 精华之家|HIGHTHOUSE // Aug 31, 2008 at 9:11 am
[...] How to convert any web template into a WordPress theme [...]
Danny // Sep 21, 2008 at 6:48 am
Thanks! This is going to help me a lot porting over my friend’s site to wordpress for him.
Bookmarked for later dates.
The Unofficial WordPress Quickstart Guide: From Start to Publish | Design Vitality // Oct 17, 2008 at 7:38 am
[...] How To Convert Any Web Template Into A WordPress Theme How-to on converting ANY web template into a WordPress template. [...]
Seamlessly Integrating a Blog into Your Non-Blog Website | I'd Rather Be Writing - Tom Johnson // Oct 23, 2008 at 2:44 pm
[...] How to convert any web template into a WordPress theme [...]
JoJAF // Dec 4, 2008 at 9:32 pm
Finally i can convert my fav. html template into a wordpress theme for my SMS site. Thanks alot Max Limpag
Honoka Memoirs » Trial make-over // Dec 5, 2008 at 8:46 am
[...] some help from tutorials creating the psd file, to the html file and finally converting it as a wordpress compatible theme it might take a while. I’m not good with coding and such so I usually stick to tutorials most [...]
J.B. Hernandez » Upgrading The Look of Your Website // Jan 7, 2009 at 4:19 am
[...] How to Convert Any Template Into a WordPress Theme [...]
aanbae // Jan 25, 2009 at 12:34 pm
How can I convert web template likes cms, joomla and another into blogger or blogspot..
WhatNewsToday // Feb 2, 2009 at 4:06 pm
great post..
Judia // Feb 23, 2009 at 5:28 am
You can convert a website template into a wordpress template, but how do you convert a wordpress template into a website template? I’ve been trying for a while to see how you convert wordpress to blogger, but nobody is saying. I then tried to see how you convert wordpress to a website template. I REALLY need help here that nobody gives. Can you make a post about that??? You can contact me here: [email protected]
A New look and a New host | An Engineering Diary // Apr 3, 2009 at 3:35 am
[...] Once the CSS was in place, it was just a matter of playing around with colours and tweaking things here and there, referring to the two books above where necessary, and converting the final design to a wordpress theme. [...]
Yelkinen // Apr 14, 2009 at 7:11 am
Yeah, great tuto, but i try …… with not success ….
I know html but not the php, and my transformation doesn’t works.
I try to convert the association template website in wordpress for the next ‘Rallye of Gazelles 2010′
My html website it’s good, but now we need a blogger.
Need some help, please.
Regard
Yelkinen
K L Jonasson // May 28, 2009 at 2:54 am
Great little tut you have here.
Keep up the good work!
Sulvision // Jun 12, 2009 at 6:28 am
Great tutorial, helps so much converting xhtml into wordpress, thanks for sharing!
Credit Card Guru // Jul 9, 2009 at 9:45 am
Thanks I have been searching for hours for a good method to incorporate my current template into a wordpress theme. Thanks for answering my questions.
In choosing a CMS: 40+ Great CMS Theming Tutorials | Noupe // Jul 21, 2009 at 8:37 am
[...] How to convert any web template into a WordPress theme [...]
WP-resurser | Dynamiska webbplatser // Sep 6, 2011 at 9:47 pm
[...] http://max.limpag.com/article/how-to-convert-any-web-template-into-a-wordpress-theme/ [...]
Sunday Links 9 | Earn Blogger // Sep 7, 2011 at 7:23 pm
[...] Converting a web template is easy if you know how to do it! So I would suggest you to read “How to convert any web template into a WordPress theme?” You can easily get tons of open source web templates over internet. Choose some and start [...]
Leave a Comment