logoscon / cmb2-plus
WordPress 上 CMB2 插件的通用实用类。
1.0.0
2016-10-25 12:46 UTC
Requires (Dev)
This package is not auto-updated.
Last update: 2024-09-14 19:47:49 UTC
README
WordPress 上 CMB2 插件的通用实用类。
使用方法
一个下拉列表,用于选择分类术语,但不会在文章上设置术语
$cmb->add_field( array( 'name' => 'Featured Category', 'desc' => 'Set a featured category for this post.', 'id' => '_cmb2_featured_category', 'type' => 'select', 'options_cb' => 'cmb2_get_term_options', 'get_terms_args' => array( 'taxonomy' => 'category', 'hide_empty' => false, ), ) );
首页显示_on 过滤器
只有当设置了静态页面并且正在编辑它时才显示。
'show_on' => array( 'key' => 'front-page', 'value' => '' ),
变更日志
1.0.0
- 首次发布。