Contributors: inc2734, toro_unit, mimosafa, hideokamoto, hisako-isaka, kurudrive, hanamura, justinticktock, designhehe, mayukojpn, hogetan, robssanches, mirucon
Donate link: http://www.amazon.co.jp/registry/wishlist/39ANKRNSTNW40
Tags: plugin, custom field, custom, field, meta, meta field, repeat, repeatable
Requires at least: 3.9
Tested up to: 4.9.8
Stable tag: 4.0.2
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Smart Custom Fields is a simple plugin for managing custom fields.
Smart Custom Fields is a simple plugin for managing custom fields.
- Field group loop support.
- Meta data revision support.
- Meta data preview support.
https://www.youtube.com/watch?v=WxPZurn0yvI
- Text
- Textarea
- Radio
- Select
- Checkbox
- WYSIWYG editor
- Image
- File
- Related Posts
- Related Terms
- Color picker
- Date picker
- Datetime picker
- Boolean
- Message
Post meta data
This method can get any meta data.
SCF::get( 'field-name' )
This method can get meta data of any group.
SCF::get( 'group-name' )
This method can get all meta data.
SCF::gets()
User meta data
This method can get any user meta data.
SCF::get_user_meta( $user_id, 'field-name' )
This method can get user meta data of any group.
SCF::get_user_meta( $user_id, 'group-name' )
This method can get all user meta data.
SCF::get_user_meta( $user_id )
Term meta data
This method can get any term meta data.
SCF::get_term_meta( $term_id, $taxonomy 'field-name' )
This method can get term meta data of any group.
SCF::get_term_meta( $term_id, $taxonomy, 'group-name' )
This method can get all term meta data.
SCF::get_term_meta( $term_id, $taxonomy )
Custom options page meta data
This method can get any custom options page meta data.
SCF::get_option_meta( $menu_slug, 'field-name' )
This method can get custom options page meta data of any group.
SCF::get_option_meta( $menu_slug, 'group-name' )
This method can get all custom options page meta data.
SCF::get_option_meta( $menu_slug )
SCF::add_options_page( $page_title, $menu_title, $capability, $menu_slug, $icon_url = '', $position = null );
https://gist.github.com/inc2734/9f6d65c7473d060d0fd6
- Japanese(ja) - JOTAKI Taisuke
You can translate this plugin into your language by using GlotPress.
- Upload
Smart Custom Fields
to the/wp-content/plugins/
directory - Activate the plugin through the 'Plugins' menu in WordPress
- You can setting custom fields in 'Smart Custom Fields' page.
- Some updates by @robssanches
- Add message field. #64 (by @robssanches)
- Fix boolean field bug with
smart-cf-register-fields
filter hook. - Refactoring displaying options process of each fields.
See full changelog on readme.txt