我创建了一个选项页面,在我的主题中作为自定义帖子发布广告。这是我的职责。php
$config = array(
\'id\' => \'gigs-info\',
\'title\' => \'Gig Info\',
\'pages\' => array(\'gig\'),
\'context\' => \'normal\',
\'priority\' => \'high\',
\'fields\' => array(),
\'local_images\' => false,
\'use_with_theme\' => false //change path if used with theme set to true, false for a plugin or anything else for a custom path(default false).
);
$my_meta = new AT_Meta_Box($config);
//Add fields to your meta box
$my_meta->addText($prefix.\'where\',array(\'name\'=> \'Where is the Gig \'));
$my_meta->addDate($prefix.\'when\',array(\'name\'=> \'When is the Gig \'));
$my_meta->addTime($prefix.\'start_time\',array(\'name\'=> \'When Does it Start \'));
$my_meta->addTime($prefix.\'end_time\',array(\'name\'=> \'When Does it End \'));
$my_meta->addText($prefix.\'with_who\',array(\'name\'=> \'With Who is the Gig \'));
$my_meta->addTextarea($prefix.\'words\',array(\'name\'=> \'A few words on the gig \'));
$my_meta->Finish();
}
如何在索引中显示这些不同字段的内容。php?
我现在有这个。。。
<?php
$args2 = array
(
\'post_type\' => \'gig\',
\'numberposts\' => -1
);
$prefix = "_gig";
$gigs = get_post($args2);
foreach ($gigs as $gig)
{
echo get_post_meta($gig->ID, $prefix.\'where\', true);
}
?>