WordPress 主题开发 - (二) 理解主题 待翻译
What is “Theme Sense”?
What is “Theme Sense”? Theme Sense is an intuitive understanding of WordPress themes: the relationship between the files that make up a theme, and how those files fit in with WordPress. Theme Sense is what you’ll have at the end of this tutorial.
什么是主题感(Theme Sense)?主题感就是对WordPress的一个直觉感知,即组成主题的各个文件之间的关系,并且这些文件是如何与WordPress适配的。(译注:主题与wordpress的交互,都是通过action这样的机制注入的)。主题感是你在本教程结束时将要掌握的技能。
Theme Sense is not about memorizing code
Let’s think about mathematics and “number sense” for a second. If you teach a kid to just memorize arithmetic facts with flashcards, without explaining why the answers are what they are, that kid may struggle when they encounter a fact they haven’t memorized. Being able to demonstrate, for example, 5+2 = 7 using blocks helps the kid “see” how numbers work. They can then use this knowledge to help solve any problem they run into in the future, even if they haven’t memorized the answer.
Theme Sense works the same way. It’s important to focus on the larger picture of what you’re trying to achieve, instead of memorizing specific bits of code.
How do I develop my Theme Sense?
You don’t have to understand the mechanics behind every single line of PHP.
If you’ve read this far, you’re mostly there. Theme Sense is about being aware of what you’re doing, and making conscious, informed decisions along the way. For example, if I asked you to design me a car, you’d instantly know what parts to include in your design — engine, frame, tires, windows, exhaust pipe, and so on. You might not know how every single part works, but you’d be able to explain why you need them in the design, and you’d know to check the quality of the parts — super important for safety. Your years of experience driving and riding in cars has led to your “car sense”.
Use a similar approach when approaching your next theme project. Great questions to ask yourself are: “Which files do I need to include in my theme? What roles do these files play? Why am I about to paste this bit of code into my theme? Where did this bit of code come from, and who wrote it? What purpose does this code bit serve? Is it up to date? Is it safe?”
You don’t have to understand the mechanics behind every single line of PHP, because it may change two, three, or four release cycles down the road. What’s important is that, like with cars, you’re able to demonstrate a macro understanding of what your theme is doing under the hood.
That said, here are some specific things you can do to develop that macro understanding and to keep your Theme Sense sharp.
Know “What’s New” with WordPress
WordPress code is all over the web. It’s even found its way offline, and into books and magazines. When you gaze at stars in the night sky, you’re seeing them as they existed millions of years ago. Likewise, when you examine a WordPress code sample, that sample is a snapshot of WordPress as it existed at the time of writing, and not necessarily WordPress as it exists now.
Awareness of the latest WordPress versions and major new features will help you evaluate the timeliness of WordPress tutorials, books, and plugins. To keep up with WordPress releases, subscribe to the WordPress News blog.
Get in the habit of checking dates
The first thing you should check before reading any tutorial or book is the date it was published. Remember how important it is to know “what’s new” with WordPress? That will help you evaluate which parts of a tutorial are still relevant, and which code is still current enough to use in your theme. As you may already know, it’s dangerous to use obsolete code in a theme because it may have known vulnerabilities that hackers can exploit. Relevancy is not an all-or-nothing deal, though, and code doesn’t come with expiration dates. You must determine relevancy on a case-by-case basis.
If you do use outdated code in a theme, it’s not the end of the world. There are plugins, such as Developer andTheme-Check, that will help you optimize your WordPress theme development environment and scan your theme’s code for currency, respectively.
In addition to the developer plugins, it’s great to get into the habit of adopting the best security practices listed in the Theme Security and Privacy Guidelines on the Theme Review page at the WordPress Codex. Scan the list and make note of any that refer to features you’re using in your theme. For example, item that refer to data validation and sanitation are necessary to protect your site fromCross-Site-Scripting (XSS) attacks.
I think the principle behind the second item on the list is especially pertinent when we’re talking about code relevance and timeliness:
Themes are required to implement Theme Options and Theme Settings pages deliberately, rather than relying on copy-and-paste scripts from website tutorials.
Copy-and-paste scripts may become obsolete very quickly. This applies not only to theme options code, but code from any tutorial. I mostly just want you to know to be aware of the importance of timeliness and keeping your theme as secure as possible.
Understand the essential elements of WordPress themes
Most websites, whether they run WordPress or not, have the same general sections: a header area, a main content area, a sidebar, and a footer. It might be helpful to think of these sections as blocks (or car parts, your choice). Some blocks, such as the header, footer, content, and sidebar, you’ll use in every theme you develop. You just might stick them together differently depending on the purpose your theme is trying to serve for users. With WordPress themes, template files such as header.php, index.php, sidebar.php, and footer.php are your “blocks”. Therefore, the Theme is the completed structure that you build with these blocks.
Awareness of these essential elements will go a long way in helping you to develop theme sense. For a quick primer on the parts of a WordPress theme, check out the The Theme Development page on the WordPress Codex.
Know where to find the latest coding examples and standards
The WordPress.org Codex is a great starting point to research WordPress functions and template tags that you find in tutorials. If a function is deprecated, The Codex page for that function will note it and point you to the most current alternative. You can also find a list on the Codex of all deprecated functions.
The Log Deprecated Notices plugin scans your theme for deprecated functions, as well as outdated template files and incorrect uses of functions.
The WordPress Theme Review Team has a set of guidelines that all themes must meet in order to be approved for the official WordPress.org free themes directory. Evaluating your code against these standards can help you to stay abreast of best practices and standards.
Finally, when in doubt about something, there are places you can go to ask questions, such as the Themes & Templates section on the WordPress.org Support forums. If you prefer live chat, there’s the general #wordpress support channel on the irc.freenode.net network.
This is not to say that you should never break out of the mold when building themes. Rather, the idea is that it’s smart to be aware of the decisions you’re making for each theme you develop and why you are making these decisions.
Take-aways
The points to take away from this lesson are:
- Be aware of how WordPress looks now.
- Know what major new features were introduced in the latest version of WordPress.
- Pay attention to the dates on all WordPress-related tutorials. Use those, combined with your knowledge of the newest WordPress features to evaluate the relevancy of any given tutorial.
- Understand that code changes regularly, but the basic building blocks of a theme stays generally the same.
- Be aware of current best practices and standards. This can also come in handy when evaluating a tutorial’s relevancy.
- Understand why you are making the decisions you’re making for your theme — for example, what purpose does each template file in your theme serve? If you’re about to paste a large block of code into your theme that you dug up from Google, what purpose is that code serving? Is the code relevant? Up to date? Secure? You don’t have to memorize every line of PHP. What’s important is that you’re able to comprehend your theme on a macro level.
WordPress 主题开发 - (二) 理解主题 待翻译的更多相关文章
- WordPress 主题开发 - (十三) Archive模板 待翻译
What archive.php does (and all its related templates) is show posts based on a select criteria. A da ...
- WordPress 主题开发 - (七) 让主题更安全 待翻译
We're just about ready to start building our theme's template files. Before we do this, however, it' ...
- WordPress 主题开发 - (八) Head模板 待翻译
THE WORDPRESS THEME HEADER TEMPLATE Now we get into the nitty-gritty: building up your header.php an ...
- WordPress 主题开发 - (六) 创建主题函数 待翻译
We’ve got a file structure in place, now let’s start adding things to them! First, we’re going to ad ...
- WordPress主题开发:开启文章缩略图功能
安装wordpress后,默认的主题里编辑文章都会看见这个缩略图功能,那么我们自己开发的新主题怎么有这个功能呢? 目录: 一.开启缩略功能 二.设置缩略图大小 三.编辑文章,上传缩略图 四.调用缩略图 ...
- 黄聪:《跟黄聪学WordPress主题开发》
又一个作品完成!<跟黄聪学Wordpress主题开发>,国内最好的Wordpress主题模版开发视频教程!! 目录预览: WordPress官方源文件层式结构讲解 WordPress数据库 ...
- WordPress主题开发:开启feed功能
开启feed功能 步骤一:在模版文件的<head></head>元素中添加wp_head()函数,且wp_head()函数要放在</head>标签之前,而且紧邻&l ...
- wordpress 主题开发
https://yusi123.com/3205.html https://themeshaper.com/2012/10/22/the-themeshaper-wordpress-theme-tut ...
- WordPress 主题开发:从入门到精通(必读)
本专栏介绍如何开发设计你自己的 WordPress 主题.如果你希望了解更多如何安装和应用主题的内容,请参阅应用主题文档.本文的内容不同于应用主题,因为所讨论的是编写代码去构建你自己的主题的技术内容, ...
随机推荐
- Keywords Search
Keywords Search Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) ...
- Java基础知识强化104:Serializable接口 与 Parcelable接口
1. 什么是 序列化 和 反序列化 ? 序列化 :序列化就是一种用来处理对象流的机制,所谓对象流也就是将对象的内容进行流化.可以对流化后的对象进行读写操作,也可将流化后的对象传输于网络之间.序 ...
- 【Android 界面效果32】ImageView中XML属性src和background的区别
background会根据ImageView组件给定的长宽进行拉伸,而src就存放的是原图的大小,不会进行拉伸. src是图片内容(前景),bg是背景,可以同时使用. 此外:scaleType只对sr ...
- 整理的Unity导出安卓工程利用ANT进行多渠道批量打包APK
Unity导出的安卓工程利用ant进行多渠道循环批量打包 一:设置JAVA环境变量 做android开发的配置这个是基础. win7 下配置java环境变量,下面是链接 http://www.cnbl ...
- 解决ThinkPHP开启APP_DEBUG=>false时报错的问题
最近用ThinkPHP开发一个项目,本地开发测试完成上传到服务器后,第一次打开正常,再刷新页面时就出现 “页面调试错误,无法找开页面,请重试”的错误,我就郁闷啦,明明本地设置define('APP_D ...
- .net4.0中使用ODP.net访问Oracle数据库(无需安装oracle客户端部署方法)
1.在没有安装oracle客户端的设备上也能访问服务器上的oracle (通俗的讲就是:开发的应用程序 和 oracle数据库服务器分别在两台电脑上)2.不需要配置TnsNames.Ora文件 开发环 ...
- 转:Android官方MVP架构示例项目解析
转自: http://www.infoq.com/cn/articles/android-official-mvp-architecture-sample-project-analysis 作者 吕英 ...
- Backbone.js学习之Model
首先,我们看一下官方文档中对Model的解释(或者说定义): Models are the heart of any JavaScript application, containing the in ...
- Part 9 Union and union all in sql server
Union and union all in sql server
- 怎么解决tomcat占用8080端口问题图文教程(转)
亲测有效. 原因:可能是开了多个tomcat 原文网址:http://jingyan.baidu.com/article/1612d5006c3cdae20e1eee04.html 怎么解决tomc ...