views:

167

answers:

3

I know XHTML CSS but PHP knowledge is not much and i want to get familiar with one framework to make wordpress themes quickly for clients

Available Frameworks

* Atahualpa
* The Buffet Framework
* Carrington
* Hybrid
* Sandbox
* Thematic
* WP Framework
* Thesis 
+1  A: 

I recommend Thematic.

Check out this article for more information

Alex
Thematic is a nice, free alternative, but it lacks a lot in the way of theme hooks. They've got a great forum of active members who are always willing to help. If you want something a little more robust than check out Thesis.
hsatterwhite
A: 

I found that learning how to do a child theme using thematic to be really quite awesome.

Here is my post, with tips inside for those just starting out. I give an example in there that looks like this:

<?php
  function calltoaction() {
     include(STYLESHEETPATH . '/calltoaction.php' );
  }
  add_action('thematic_navigation_below', 'calltoaction', 1);
?>

And thematic has great support on the themeshaper forums.

tomcat23
A: 

I'd go with Thesis because you can just do a lot of stuff in the admin section and if you need to go further, is not hard to find snippets of code to paste on the custom_functions file

Jeduan Cornejo