2013-06-18
I've recently started working with WordPress and found the following best practices helpful.
- Put all my actions, filters, etc. at the top of the file. This enables me to quickly see what is being added a modified without much research. It also helps any developer in the future to quickly look at functions.php file and see what's going on.
- Put all my annotated functions below my actions, filters etc.
- Plan the data structure/architecture ahead of time. This allows me to see what I need to accomplish and find the best plugins for that. Case in point: If I have multiple content types & customized list of content I choose to install Pods 2.0 and use it to create all my content types & templates for dynamic lists.
- If started with a purchased or base framework theme, create a subtheme and do everything there. First of all it gives you a clean CSS slate that you can mess with directly instead of overriding styles and adding to the loadtime of the site. Second and for some folks even more important, no headaches during base theme upgrades.