2

我有一个为产品制作的自定义帖子类型。它将有 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,依此类推。

对不起,如果这令人困惑。

4

1 回答 1

0

我想我自己回答了这个问题!

我在我的显示元框函数中创建了一个 for 循环,如下所示:

//Show Meta Fields
function products_show_meta() {
global $meta_box, $post, $prefix;

// Use nonce for verification
echo '<input type="hidden" name="products_meta_box_nonce" value="', wp_create_nonce(basename(__FILE__)), '" />';

echo '<table class="widefat">',
        '<thead>',
            '<tr>',
                '<th style="width:30%">Document Name</th>',
                '<th>Document URL</th>',
            '</tr>',
        '<thead>',
        '<tfoot>',
            '<tr>',
                '<th>Document Name</th>',
                '<th>Document URL</th>',
            '</tr>',
        '<tfoot>';

echo    '<tbody>';

    for ($i=1; $i <= count($meta_box["fields"])/2; $i++) { 
        $current_docName = $prefix . 'docname' . $i;
        $current_docUrl = $prefix . 'docurl' . $i;
        $meta_docName = get_post_meta($post->ID, $current_docName, true);
        $meta_docUrl = get_post_meta($post->ID, $current_docUrl, true);

        echo '<tr>',
                '<td>',
                    '<input type="text" name="', $current_docName, '" id="', $current_docName, '" value="', $meta_DocName ? $meta_DocName                           : '', '" size="30" style="width:99%" />',
                '</td>',
                '<td>',
                    '<input type="text" name="', $current_docUrl, '" id="', $current_docUrl, '" value="', $meta_DocUrl ? $meta_DocUrl :                             'http://', '" size="30" style="width:99%" />',
                '</td>',
            '</tr>';             
    }

echo    '</tbody>',
    '</table>';

首先,我回显表格的页眉和页脚,为每一列指定适当的名称。然后我运行一个for从 1 开始的循环并计算我拥有的字段数(我必须将它除以 2,否则它会使行加倍)。然后我只是抓住每个字段并回显该行。这是下面的代码呈现的内容:http: //i.stack.imgur.com/NPu66.png 它正在工作并完美地保存数据!

于 2011-05-03T04:57:25.470 回答