Humayon Kabir
Humayon Kabir

Reputation: 11

Genesis theme development

I am trying to make a custom genesis theme form HTML file.I tried several times in google to find some resource.But i failed.So basically is there any good resource is available to make custom them from scratch..

thanks.

Upvotes: 0

Views: 192

Answers (4)

billyyeung
billyyeung

Reputation: 31

My opinion:

  1. Read "How to Build a Genesis Child Theme" tutorial from Bill Erickson. (also mentioned by Carele) http://www.artofblog.com/building-a-genesis-child-theme/

  2. Use the free themes from Brian Gardner to learn http://briangardner.com/themes/

  3. Use copyblogger's sample Genesis theme on github as a base when you start creating your own child theme. https://github.com/copyblogger/genesis-sample

Upvotes: 3

bezierer
bezierer

Reputation: 388

Your best bet for learning Genesis theme development will be the treehouse course by Jesse Peterson or Carrie Dils' Genesis courses on Lynda.com https://www.lynda.com/Carrie-Dils/965233-1.html both offer free trials which should help get you started!

Upvotes: 0

Nick Surmanidze
Nick Surmanidze

Reputation: 1689

If you need to develop a theme using genesis framework, than it is not very straightforward from the first sight. You will need to use their hooks and filters and modify/swap the output of each section of their pre-defined theme skeleton. Here is a link with more details: http://designsbynickthegeek.com/tutorials/genesis-explained-the-framework

If you want another resource, I would recommend using http://underscores.me/ starter theme.

Upvotes: 0

Carele
Carele

Reputation: 784

After a quick research, this seems pretty clear and full.

http://www.artofblog.com/building-a-genesis-child-theme/

Indeed you can't just take a html file and "convert" it into wordpress theme. You gotta make a child theme from it. You have to break it up and insert your code within the php (keeping the structure as close as possible as your parent theme.

Here are some interesting tips I usually follow as well.

http://briangardner.com/building-custom-genesis-theme/

Upvotes: 0

Related Questions