Apr 3 2008

Simple steps to create a wordpress theme

Wordpress Theme Development

Wordpress theme is merely a folder which is to be placed in wp-content folder of wordpress hierarchy .

The basic files needed in that theme folder is index.php and style.css

In this style.css the following lines are very essential.
/*

Theme Name: Theme Namet

Theme URI: http://www.sajithmr.com/

Description: Details of your theme

Author: Author name

Author URI: http://www.sajithmr.com/

This theme was designed and built by Sajith

The CSS, XHTML and design is released under GPL

http://www.opensource.org/licenses/gpl-license.php

*/
Design your theme (static page) and put this as index.php in theme folder. Go to wordpress admin panel and set the current theme as the theme you created now. Then you can see the static design created by you.

Next step is make each part dynamic. For example if you want to make your blog title dynamic , replace your static code with

<?php wp_title(); ?>

Make your style sheet path also dynamic by : <link rel=”stylesheet” href=”<?php bloginfo(’stylesheet_url’); ?>” type=”text/css” media=”screen” />

Like this , there is a lot of built in dynamic functions in wordpress.I will give you some links at the end of this post .

Another , very special , feature of wordpress theme is its hierarchy. You can sub divide the index.php files into a lot of sub files. See the below picture

Wordpress theme hierarchy

(Click on the picture to see full size)

This picture shows the control flow whenever a particular url request arrives. For example you can write all the code for footer in footer.php and can include this file in your index.php file as

<?php get_footer(); ?>

Some important wordpress dynamic functions:

Function for showing posts:

<?php if (have_posts()) : ?>

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

<?php the_content(’Read More »’); ?>

<?php break;?>

<?php endwhile; ?>
<?php endif; ?>

See this link for further development: http://codex.wordpress.org/Theme_Development

Wordpress Theme Development Wordpress Theme Development

Some useful functions:

<?php wp_list_categories(’title_li=’); ?> /* Listing categories */

<?php edit_post_link(’Edit this entry.’,”,”); ?> /* Post edit link*/

<?php the_category() ?> /* Shows current category*/

<?php wp_list_pages(’sort_column=menu_order&depth=1&title_li=’);?> /* Page Links*/

<?php wp_head(); ?> /* Head information */

<?php wp_loginout(); ?> /* Login / logout links*/

<?php the_permalink() ?> /* Get the permalink */

<?php the_excerpt(); ?> /* Get the short description of a post*/

<?php posts_nav_link(’ — ‘, __(’« Older Posts’), __(’Newer Posts »’)); ?> /*Page navigation*/

4 Comments on this post

Trackbacks

  1. Create Wordpress Magazine Style Theme easy! | TheAnand wrote:

    [...] With this you can have even your old html page as the homepage! Or better, rename it to php and put in codes to show recent posts, recent comments or even posts from your sub domain blog as I did with my TheAnand home. Hope this helps! If you are looknig for a way to learn what a wordpress theme is all about check this heirarchy by Sajith. He has a excellent post to help you get started with creating a wordpress theme. [...]

    November 1st, 2008 at 9:00 pm
  1. My Tech Shelf Admin said:

    Is there any editing tool available for creating word press themes?

    May 26th, 2008 at 10:38 pm
  2. Sajith M.R said:

    Normal html / php editor will do. Since wordpress is only configuration based content manager, the design is upto the designer with his html and style sheet skill.

    Thanks
    Sajith

    May 28th, 2008 at 12:28 am
  3. RaidaGabtiz said:

    i want to share my free wordpress theme here.

    Preview:
    http://www.elegantthemes.com/preview/eVid/

    Download:
    http://www.sendspace.com/file/6uv0n2

    November 18th, 2008 at 9:00 am

LEAVE A COMMENT

Subscribe Form

Subscribe to Blog

Sponsors

    Advt on sajithmr.com
    Advt on sajithmr.com
    Itslife Online
    Advt on sajithmr.com

Recent Comments

  • Binny V A: Thanks for the post - love the picture ;-)
  • TheAnand: A lot of people are seeing errors with google video chat….is there any other software which has to be...
  • Alex: Wow, interresting analysis you have done! I’m trying to run GoogleVoiceAndVideoSetup on linux, using...
  • Mella Fitriansyah: Nice plugin, I will try to add this plugin in my blog…
  • Mella Fitriansyah: Nice Info, Sir i will reading your another post success for you

Recent Readers

JOIN MY COMMUNITY!

Recent Posts