该插件尚未通过WordPress的最新3个主要版本进行测试。 当与较新版本的WordPress一起使用时,可能不再受到维护或支持,并且可能会存在兼容性问题。

Spiffy Meta Box Creator

描述

This plugin lets you create meta boxes by creating and calling a function but without needing to reuse all of the same WordPress functions for doing so.

Arbitrary section

Here is an example meta box function:

< ?php

//Meta box for page settings
function pageSettings() {

//Name of the meta box (lowercase without spaces)
$name = 'page_settings';

//Enter the titles for each one of your boxes
$titles = array('Section Headline');

//This will run the titles through a function that converts them into lables for the form fields.
$boxes = makeTitles($name,$titles);

//Description of meta box
$desc = 'Page Settings';

//Show on page type:
$types = array('page');

//Pull in existing meta field value
$setHeadline = get_post_meta($_GET['post'],"_page_settings_section_headline",true);

$content = "Page Headline:”;
$content .= “”;

//Run the function
$config = array(
‘name’=>$name,
‘boxes’=>$boxes,
‘desc’=>$desc,
‘type’=>$type,
‘content’=>$content
);

//Create the object
newMetaBox($config);
}

//Run it
pageSettings();

?>

安装

  1. Upload plugin-name.php to the /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress
  3. (Optional) Create a meta-boxes.php file and include it from your functions.php file. Since the meta box functions can get long this will help keep your functions.php cleaner and keep all your meta boxes together.

常见问题

Q. How are labels generated?
A. When you create a title in the titles array and it is passed into the makeTitles function the name of your meta box gets appended to the begining of the title along with an underscore. Thus if your neta boxe name is ‘my_meta_box’ and one of your titles is ‘My Checkbox’ the label for that input will become ‘_my_meta_box_my_checkbox’.

评价

此插件暂无评价。

贡献者及开发者

“Spiffy Meta Box Creator” 是开源软件。 以下人员对此插件做出了贡献。

贡献者

更新日志

1.1.0

  • Changed type from string to array to support showing a meta boxes in multiple post types. Variable name has changed from $type to $types.

1.0.1

  • Renamed the class of the container around the meta boxes

1.0

  • First version