| |

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

  • |

    Nyxem Worm to overwrite files.

    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!Last week PC World wrote about the Nyxem Worm, a worm that spreads via e-mail and has the potential to be…

  • |

    Hi.

    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! Remeber that post where i read the article Halo could make $75 mill on opening day. Well, that was a…

  • |

    Excerpt from Building WordPress Themes from Scratch

    Recently my first book, Building WordPress Themes from Scratch, made its way back onto the market. In this book, I teach you how to use WordPress as well as how to leverage the API to create your own custom themes, plugins, and content types. Here is an excerpt from the book. Enjoy!

  • Sgt. Roger Reed(its a good post)…

    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 guess is was a little over year ago when i found out my friend’s dad friend and neighbor was going…

  • Books Recap for February 2019

    It was another good month of reading. I finished 2.5 books and read about 830 pages this month. I’m only slightly down from last month as I didn’t travel anywhere, so I didn’t have quite as much dedicated reading time. The 2 books I finished are Educated and This is Marketing.

  • | |

    Why I Uninstalled Candy Crush Saga

    Look I’m not ashamed to admit it; I really enjoyed playing Candy Crush Saga. If you don’t know, it’s a puzzle game where you swap different pieces of candy to achieve certain goals and rack up points. It starts off a bit like Bejeweled and gets more complicated moving forward. It’s Bejeweled-like feel is why…

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.