我有一个为产品制作的自定义帖子类型。它将有 10 种自定义字段类型,如下所示:
DocName1
DocUrl1
DocName2
DocUrl2
... 等等。这是自定义字段的自定义帖子类型元框的代码:
//* Add custom Meta Boxes for Products *//
$prefix = 'aps_'; //To prevent conflicts with other plugins
$meta_box = array(
'id' => 'products-meta-boxes',
'title' => "Product Details",
'page' => 'tf_products', //attach to products custom post
'context' => 'normal',
'priority' => 'high',
'fields' => array(
array(
'name' => 'Document Name 1',
'desc' => 'Name of PDF or Document you want to share',
'id' => $prefix . 'docname1',
'type' => 'text',
'std' => ''
),
array(
'name' => 'Document URL 1',
'desc' => 'Web Address to PDF or document you want to share',
'id' => $prefix . 'docurl1',
'type' => 'text',
'std' => 'http://'
),
array(
'name' => 'Document Name 2',
'desc' => 'Name of PDF or Document you want to share',
'id' => $prefix . 'docname2',
'type' => 'text',
'std' => ''
),
array(
'name' => 'Document URL 2',
'desc' => 'Web Address to PDF or document you want to share',
'id' => $prefix . 'docurl2',
'type' => 'text',
'std' => 'http://'
)
)
);
我想将它们组合在一起,DocName1 - DocUrl1
这样它们就可以作为文本框在网格的单行上回显。我已经在我的自定义帖子类型添加/编辑表单上准备好了一个网格,我想将文本框放入其中,以便可以添加或编辑它们。截图在这里http://i.stack.imgur.com/ZGqGI.png
我可以轻松地为每个字段执行一个foreach ($meta_box['fields'] as $field)
并回显文本框,但这是针对每个字段,而不是一个组(如 DocName1 和 DocUrl1),但我希望DocName1 - DocUrl1
在同一网格线上。有没有办法做到这一点?我无法找到一种有效的方法来做到这一点。
我现在的做法是这样的:
foreach ($meta_box['fields'] as $field) {
// get current post meta data
$meta = get_post_meta($post->ID, $field['id'], true);
echo '<tr>',
'<th style="width:20%"><label for="', $field['id'], '">', $field['name'], '</label></th>',
'<td>';
echo '<input type="text" name="', $field['id'], '" id="', $field['id'], '" value="', $meta ? $meta : $field['std'], '" size="30" style="width:97%" />', '<br />', $field['desc'];
echo '</td>',
'</tr>';
}
但当然,这个回声会在每个字段中单独显示。我想要一个网格,在第一个网格线上有 DocName1 和 DocUrl1,然后在第二个网格线上有 DocName2 和 DocUrl2,依此类推。
对不起,如果这令人困惑。