ھي پلگ ان WordPress جي جديد 3 وڏين رليزز سان آزمايو نه ويو آھي. اهو ٿي سگهي ٿو وڌيڪ برقرار يا سپورٽ نه ٿي سگهي ۽ ٿي سگهي ٿو مطابقت جا مسئلا جڏهن ورڈپریس جي وڌيڪ تازي ورزن سان استعمال ڪيو وڃي.

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.

FAQ

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” اوپن سورس سافٽ ويئر آهي. ھيٺين ماڻھن ھن پلگ ان ۾ حصو ورتو آھي.

تعاون ڪندڙ

ترجمو ڪريو “Spiffy Meta Box Creator” توهان جي ٻولي ۾.

ڊولپمينٽ ۾ دلچسپي؟

ڪوڊ براؤز ڪريو، چيڪ ڪريو SVN مخزن، يا رڪنيت حاصل ڪريو ڊولپمينٽ لاگ پاران RSS.

لاگ تبدیل ڪريو

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