WordPress Meta Box插件显示克隆文本

时间:2014-12-27 06:10:08

标签: php wordpress

我正在尝试在我的一个WordPress页面模板中输出这个自定义元。插件的文档似乎缺乏。 (http://metabox.io/docs/get-meta-value/

因为我将克隆设为true,所以在自定义帖子类型

中显示如此

enter image description here

我正在尝试用VIA显示它,所以输出可能就像

<ul>
<li>Red LED footwell lighting</li>
<li>Red LED Trunk Lighting</li>
<li>etc...</li>
</ul>

以下是我如何定义我要显示的项目

        array(
            'name' => 'Interior Mods',
            'desc' => 'List all of the interior mods',
            'id' => $prefix . 'intmods',
            'type' => 'text',
            'std' => '',
            'class' => 'custom-class',
            'clone' => true,
        ),

由于

1 个答案:

答案 0 :(得分:1)

您可以使用插件代码获取价值。

$values =  rwmb_meta(
    'YOUR_PREFIX_text', 
    $args = array(
        'type'=>'text',
        // other options for meta field
    ),
    $post_id = $post->ID
);

if($values){
    echo "<ul>";
    foreach ($values as $key => $value) {
        echo "<li>".$value."</li>";
    }
    echo "</ul>";
}