neochic/woodlets
Composer 安装命令:
composer require neochic/woodlets
包简介
Create WordPress Widgets using Twig Templates
关键字:
README 文档
README
Woodlets is beta. We think it's stable enough be used it in productive environments and we do so.
However you should copy the default templates directory from views/defaultTemplates into the woodlets directory of your theme. This helps to prevent incompatibilities with future Woodlets versions.
Feedback and feature requests are welcome!
Woodlets is a WordPress plugin that makes theme development more productive and fun.
The main features are:
- Heavily Twig based theme development
- Create widgets with a single Twig-Template file
- Multi column page layouts
- Custom page template fields with data inheritance
- Simple way to add controls to the theme customizer
- Compatible with native WordPress widgets
Installation
Installation via TGM Plugin Activation is recommended. With TGMPA Plugin Activation you can define Woodlets as a required dependency for your theme.
But there is also a bundled version that can be installed manually.
Install via TGM Plugin Activation
-
Install TGM Plugin Activation as they explain in their installation manual.
-
Include and configure the TGM Plugin Activation library to load Woodlets:
<?php require_once dirname( __FILE__ ) . '/class-tgm-plugin-activation.php'; add_action( 'tgmpa_register', function() { $plugins = array( array( 'name' => 'Woodlets', 'slug' => 'woodlets', 'source' => 'https://github.com/Neochic/Woodlets/releases/download/v0.6.13/woodlets-v0.6.13-bundled.zip', 'required' => true, 'force_activation' => true, 'force_deactivation' => true ) ); tgmpa( $plugins ); });
Check "Woodlets Seed"-Theme Tgm.php for a working example.
Install manually
- Go to releases page and download the latest bundled release.
- Extract the zip archive to your WordPress plugins directory (usually "wp-content/plugins/").
- Activate the plugin on the plugins page of your WordPress installation.
Getting started
For the creation of new Woodlets themes we recommend to use "Woodlets-CLI" instead of starting from scratch. It might also be a good idea to take a look at the "Woodlets Example"-Theme.
Create a theme manually
-
Be sure the Woodlets plugin is installed and activated.
-
Create a new theme (as the WordPress documentation says it should at least contain
style.cssandindex.php) -
Put the following lines into your
index.php:<?php do_action('neochic_woodlets_render_template');
The action
neochic_woodlets_render_templateinitializes the template rendering. -
Activate your new theme.
-
Create your first page template with at least one column. Learn how to create your own page templates.
-
Create your first Woodlets widget. Learn how to create custom widgets.
-
Add your new widget to the allowed widgets configuration of your page template column.
-
Create or edit a page and use your new page layout to test your widget in backend and frontend.
Further Reading:
统计信息
- 总下载量: 65
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 9
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-06-03