| |

Building WordPress Themes from Scratch FAQs

Note: This article was published while I was in my early 20s. I was much younger and dumber. Please don't hold it against me. One of the perils of having a 20+ year old website!

How do I access the files from the book?

If you go to Page 140 in the book, you’ll see a section called  “Your Download Links” with a link generated for you! Just click on that link (or type it into your browser if you got the print copy) and the accompany files will be downloaded to your computer. To make things easier, you can also click this link, which will take you to Github 🙂

Do Lifetime Updates also come with the print version?

Do they ever! When you buy the paperback version of the book, all you have to do is send a copy of your Amazon purchase receipt to upgrade@rockablepress.com and they’ll send you all 3 digital version of the book as well (PDF, ePub and Kindle). Once you have these three digital versions, we’ll send you the updated versions of the ebooks* when we we launch a revised edition of the book.

*This does not include an updated version of the print book.

Do you cover Responsive Web Design in your book?

Unfortunately I do not. I really wanted to focus on WordPress theming and tapping into the API. I do cover it in my new book, Responsive Design with WordPress, out now!

Is the book be available on Tuts+ Premium?

It is! You can also buy it on Amazon again. Oh happy day!

I found an error! How can I report it?

Bummer! If you found an error, fill out the contact form and include the page number and what the error is. If you’d be so kind, make the Subject, “Errata.”

Have other questions?

Shoot me an email through the contact form on my main site and I’ll get back to you as soon as possible.

Similar Posts

  • Announcing the eBook Giveaway Winner!

    The results are in for my 3 eBook giveaway and the winner Kevin Jones! Congratulations to Kevin and thanks to everyone who entered here and on Twitter. If you didn’t win, you can still get 35% off Responsive Design with WordPress when you order from Peachpit and use the code RWDWP. For all of my books you can…

  • |

    50K Downloads & More Coming to How I Built It

    Last summer I was at a crossroads with WP in One Month. In-person courses didn’t work, the webinars were running their course but that wasn’t a sustainable business model. I started having conversations with some great folks in the community – Matt Medeiros, Cory Miller, and Shawn Hesketh just to name a few. These conversations taught me…

  • | |

    How I Launched Creator Courses in One Week

    7 months ago I took my business full-time. Being a freelancer for most of my life, and even doing it full-time for a while after college, I thought I had a pretty good handle on how things would work. But as it turns out, the product space is a lot harder to work in than…

  • 2017 Summer Reading List

    I’ve been trying to read more – and to that end, more fiction. I read 15 books last year (better than my one-per-month goal) and all were non-fiction except one. So this year, I’m committing reading more books (18) and more fiction (6). Here’s what I’ve got on the docket as we go into the…

  • CKY in Concert

    Note: This article was published while I was in my early 20s. I was much younger and dumber. Please don’t hold it against me. One of the perils of having a 20+ year old website! I’d like to start off with a post from the last time I saw CKY, in 2003. This is from…

5 Comments

  1. Hi there,
    Sorry to bother you, but I wondered if I could ask a question about p34 in your book? Specifically: wp_nav_menu ( array(‘menu’ => ‘Main’ , ‘container’ => ‘nav’ ));

    I’m not getting any styling on the wp_nav_menu in the header and when I look at the generated code, it doesn’t produce the “nav” div class, but instead provides a “menu” div. I looked in the CSS and all I can see that’s relevant is “header nav” and “header nav ul li” with no header class in the header. I’m more than happy to change the css to reflect this, but I was concerned that I’ve fundamentally misunderstood something. If you have the time to point out where I went wrong, I’d be very grateful. If not, please don’t worry – I’m sure I’ll puzzle it out myself at some point!

    Other than this one issue, I’m really enjoying the book and have found it really interesting and easily navigable. Thank you for writing the book, it’s helped me immensely!

    Regards,
    Angela

  2. Hi Guys, I had the same issue and fixed it finally. Here is the my solution below:

    Open header.php and

    find:

    ‘Main’, ‘container’ =>’nav’ )); ?>

    change with this:

    ‘Main’, ‘container’ =>’nav’ )); ?>

    and add this in master.css file:

    header ul li { float:left ;}

    These will fix the menu issue 🙂

  3. Hi Guys, I had the same issue and fixed it finally. Here is the my solution below:

    Open header.php and

    find:

    [code] ‘Main’, ‘container’ =>’nav’ )); ?>[/code]

    change with this:

    [code] ‘Main’, ‘container’ =>’nav’ )); ?>[/code]

    and add this in master.css file:

    header ul li { float:left ;}

    These will fix the menu issue 🙂

  4. Put the related code in header.php between tags and add this code “header ul li { float:left; }” in master.css

    Sorry for previous posts, the site cuts the codes automaticly

Comments are closed.