07 Oct 2014
WordPress tutorial
If you don't want to code you wordpress, this PDF will be very enough for you. Otherwise, go through the comment for more coding resources.
GUI introduction
Guide
http://www.noupe.com/wordpress/the-powerful-guide-to-master-your-wordpress.html
http://paranimage.com/proficient-wordpress-guide-series-1-proficient-with-the-skills-wordpress-theme-hacks
Web design resource
Explore more web design samples before start your own design.
http://www.noupe.com/essentials/freebies-tools-templates/100-great-css-menu-tutorials.html
Comments
Leave a Reply
You must be logged in to post a comment.
Theme Development
http://codex.wordpress.org/Theme_Development
It is not that important in the beginning, save it as bookmark for later use.
HTML, PHP, CSS are mainly used in wordpress and each of them required to follow the code standard if you want you wordpress work on other platform better.
Code standard
HTML
Brief information
https://make.wordpress.org/core/handbook/coding-standards/html/
It is also suggested to use codex to validate the code but I have no idea what it is now.
For more:
DESIGN PATTERNS LIBRARY & CODE STANDARDS
http://developer.fellowshipone.com/patterns/code.php
Looking for more about CSS and PHP
Anatomy of WordPress (structure of wordpress)
https://yoast.com/wordpress-theme-anatomy/
From : https://managewp.com/wordpress-theme-anatomy
WordPress run on php
/* ref from TOM EWER :
* "The index.php files tells the header, sidebar, and footer where to appear on the page and each of these *subsequent files tells the browser what content to display in those areas."
*/
Loop
“The Loop is used by WordPress to display each of your posts. Using The Loop, WordPress processes each of the posts to be displayed on the current page and formats them according to how they match specified criteria within The Loop tags. Any HTML or PHP code placed between where The Loop starts and where The Loop ends will be used for each post.”
wpbeginner reading material:http://www.wpbeginner.com/glossary/loop/
Official reading material: http://codex.wordpress.org/The_Loop