#9 in Web development & design books
Use arrows to jump to the previous/next product

Reddit mentions of Professional WordPress: Design and Development

Sentiment score: 6
Reddit mentions: 9

We found 9 Reddit mentions of Professional WordPress: Design and Development. Here are the top ones.

Professional WordPress: Design and Development
Buying options
View on Amazon.com
or
    Features:
  • Used Book in Good Condition
Specs:
Height9.279509 Inches
Length7.40156 Inches
Number of items1
Weight1.6975594174 Pounds
Width0.858266 Inches

idea-bulb Interested in what Redditors like? Check out our Shuffle feature

Shuffle: random products popular on Reddit

Found 9 comments on Professional WordPress: Design and Development:

u/ha_ya · 6 pointsr/web_design

Good news: there's no need to be scared.

It was a previous version of this tutorial from Themeshaper that got me started on WordPress myself. Like anything else, just play with it until you're comfortable.

User roles are the last thing you need to worry about. Here's the summary from the WordPress codex. I'd actually recommend reading it from bottom to top. I make clients editors at most; I've never had one insist on being an admin.

What you'll really want to focus on is learning PHP if you haven't already, and WordPress themes.

If it's a good book you're after, the best one out there I've used is Professional Wordpress: Design and Development

Edit: Although it's good to build a couple themes from scratch — meaning creating all the template files yourself to understand how they work — eventually that'll get tedious as you'll find yourself constantly adding the same elements over and over. Underscores remedies this perfectly: it basically gives you a blank theme with everything you need ready to go. It's not a framework, just a head start. Highly recommended for picking apart and experimenting — and for building themes.

u/PixelatorOfTime · 3 pointsr/Wordpress

Best book to get moving: http://www.amazon.com/Professional-WordPress-Development-Brad-Williams/dp/111844227X

Find a few solid plugins, download them, and then start browsing through their source code. Literally start at index.php and follow every function call to see the application flow. There are a million ways to write a plugin, but pay particular attention to ones who use standard design patterns like MVC and the like.

Read through this series of articles to see how WP bootstraps itself. Regardless of whether you'll be working on Core, it will help you understand some of the complexities and might even be useful when debugging.

u/Dencho · 2 pointsr/webdev

If he/she is serious about wordpress development, at some point or another this book will come in handy:

http://www.amazon.com/Professional-WordPress-Development-Brad-Williams/dp/111844227X/

u/modestview · 2 pointsr/web_design

Not trying to be mean, but it sounds like you're in over your head. Seriously, if the site needs to be completed any time soon, I'd recommend outsourcing it, or advising the client to go a different route.

If you weren't given a design, and could jam whatever they wanted into an existing theme, then your "little HTML & CSS knowledge" would probably suffice. You're talking about building a custom theme. You need to know some PHP. You need to know how the WordPress templating system works. You need to be able to set up an SQL database.

Luckily, WordPress has some great documentation: http://codex.wordpress.org/ but it sounds like you won't have the time to learn WordPress properly. If you are serious about WordPress, and would like to get a firm grasp of it at some point (and I think you should, it's very popular and useful), you can check out this book: http://www.amazon.com/Professional-WordPress-Development-Brad-Williams/dp/111844227X/ref=sr_1_5?ie=UTF8&qid=1409097469&sr=8-5&keywords=wordpress

EDIT: Also, check out /r/wordpress

u/raveiskingcom · 2 pointsr/Wordpress

I believe there is specifically a book called "Professional WordPress Design and Development" that goes over PHP's implementation on the back end. I've read it, and it is an excellent book.
https://www.amazon.com/Professional-WordPress-Development-Brad-Williams/dp/111844227X

u/freef49 · 1 pointr/webdev

I'm going through the process of diving deep into wordpress and so far the best resource that I've found that delves into the specifics of using wordpress as a dev is this book. it should save you a lot of googling time.

u/thegermwar · 1 pointr/Wordpress

Are you talking about reading up on how to develop for WordPress? If so, the links provided by others are a great starting place. I'd also recommending checking out "Professional WordPress" by Brad Williams:
http://www.amazon.com/Professional-WordPress-Development-Brad-Williams/dp/111844227X/ref=sr_1_1?ie=UTF8&qid=1414536372&sr=8-1&keywords=professional+wordpress

It's almost two years old now, so some of the information may be dated, but most of it will still be relevant.

u/rousseaux · 1 pointr/Wordpress

Sounds like you're looking for something like this. I bought it and it's really good, but really the best way to learn is to figure out what you want to make, and then figure out how to make it by Googling. If you really want to learn Wordpress in the thorough way you're describing, I'd have thought you'd want to start with PHP.