vote up 1 vote down star

Does any have the idea of how wordpress works. I am very much curious about to know the working and flow of execution in wordpress. How they are managing the templates and htaccess controll follow etc.

Help me and share your knowledge with me.

flag

70% accept rate

5 Answers

vote up 1 vote down

There are two things that really helped me out.

First, get familiar with the default template. Try changing some of the PHP files in the wp-content/ folder.

Second, when you feel like you understand the basics of what is going on, go through some of the Wordpress tutorials. They are informative and helpful.

A nice intro.
http://codex.wordpress.org/Stepping%5FInto%5FTemplates

link|flag
vote up 1 vote down

Here are some frameworks to get you started:

Wordpress Theme Frameworks explained

link|flag
vote up 0 vote down

I'd also recommend taking a look through the database. Log into PHPMyAdmin or something similar, and look at what's being saved where, and what it's being called. It clicked for me when I saw the column names later in WP tags that called "blog_description" or whatever, and I knew what it was calling.

And beyond the codex, you can actually dig around in the "real" PHP that drives the engine and not the "pseudo" PHP that comprises WP-Tags etc.

link|flag
vote up 0 vote down

Start with the template hierarchy diagram: (Visual Overview section) http://codex.wordpress.org/Template%5FHierarchy

Then read the relevant PHP file to see what's happening depending on which page is being displayed.

link|flag
vote up 0 vote down

If you like screen casts, WordPress TV has a walkthrough of the anatomy of a WordPress theme which might be helpful: http://wordpress.tv/2009/03/16/anatomy-of-a-wordpress-theme-exploring-the-files-behind-your-theme/

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.