-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy path2010-01-06-12.html
More file actions
24 lines (22 loc) · 1.3 KB
/
2010-01-06-12.html
File metadata and controls
24 lines (22 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
---
layout: post
title: "WordPress插件编程资源列表"
---
插件开发参考资料:
<ul>
<li><a href="http://codex.wordpress.org/Writing_a_Plugin"> 如何写一个插件</a></li>
<li><a href="http://codex.wordpress.org/Adding_Administration_Menus"> 如何为插件增加管理员面板</a></li>
<li> <a href="http://codex.wordpress.org/Theme_Development">新皮肤/主题开发</a></li>
<li><a href="http://codex.wordpress.org/Plugin_API">API参考手册</a> (花几分钟,大概浏览一下即可,切勿深究!因为最好的文档就是代码本身)</li>
<li><a href="http://codex.wordpress.org/WordPress_Coding_Standards">PHP代码规范</a></li>
</ul>
我看到的最有启发的一个相关博文:
<ul>
<li><a href="http://planetozh.com/blog/2009/09/top-10-most-common-coding-mistakes-in-wordpress-plugins/">10种最常见插件编程错误</a></li>
</ul>
这10个错误涵盖了代码规范、插件卸载、插件本地化、以及安全性等诸多方面,言简意赅,非常实惠。
汉化可以参考:
<ul>
<li><a href="http://codex.wordpress.org/Installing_WordPress_in_Your_Language">WordPress本地化</a></li>
<li><a href="http://codex.wordpress.org/I18n_for_WordPress_Developers#I18n_for_theme_and_plugin_developers">Theme 和插件的本地化</a></li>
</ul>