如何为我的主题创建新的 WordPress 小部件
如何为我的主题创建新的 WordPress 小部件?
How to create new wordpress widgets for my themes ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何为我的主题创建新的 WordPress 小部件?
How to create new wordpress widgets for my themes ?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
这是我最喜欢的教程:
http://justintadlock.com/archives/2009/05/26/the-complete-guide-to-creating-widgets-in-wordpress-28
我用它作为基础我所有的小部件。
基本上,小部件是一个插件,但您扩展了 WP_Widget 类。非常简单,按照教程操作即可。
这也很有帮助 http://codex.wordpress.org/Widgets_API
祝你好运!
This is my favourite tutorial about that:
http://justintadlock.com/archives/2009/05/26/the-complete-guide-to-creating-widgets-in-wordpress-28
I'm using it as a base to all my widgets.
Basically, the widget is a plugin, but you extend the class WP_Widget. It's quite easy, just follow that tutorial.
Also this is helpful http://codex.wordpress.org/Widgets_API
Good luck!
这更多是谷歌的问题,而不是 stackoverflow 的问题。您将在网络上找到大量教程和示例。
http://codex.wordpress.org/Widgets_API
http:// justintadlock.com/archives/2009/05/26/the-complete-guide-to-creating-widgets-in-wordpress-28
http://www.lonewolfdesigns.co.uk/create-wordpress-widgets/< /a>
This is more a question for google than stackoverflow. You'll find tons of tutorials and examples on the web.
http://codex.wordpress.org/Widgets_API
http://justintadlock.com/archives/2009/05/26/the-complete-guide-to-creating-widgets-in-wordpress-28
http://www.lonewolfdesigns.co.uk/create-wordpress-widgets/
如果你想创建一个小部件。导航到您的插件文件夹并在“Sample”文件夹中创建一个名为“sample.php”的空白文件。
复制以下代码并粘贴到sample.php 文件中。
If you want to create a widget. Navigate to your plugins folder and create a blank file named as “sample.php” in “Sample” folder..
Copy below code and paste in sample.php file.