自定义字段未显示在管理员Wordpress中

时间:2016-03-04 06:51:10

标签: php wordpress custom-fields

当我使用分类法创建自定义帖子类型时,当我添加新的自定义字段时,它会保存在数据库中但不会显示在自定义字段中。我不明白如何在管理面板中显示自定义字段。

2 个答案:

答案 0 :(得分:0)

Wordpress有一个非常好的名为Advanced Custom Fields的插件。它非常易于使用,并具有用于页面布局,帖子类型等的条件逻辑。

答案 1 :(得分:0)

我们可以轻松创建一个meta框,而无需使用任何插件并根据我们的需要对其进行自定义:

here是用于创建元框的Wordpress文档,而here是使用自定义帖子类型轻松实现它的示例。这是示例:

<?php
add_action('add_meta_boxes', 'meta_box_add_function');;
function meta_box_add_function()
{
    add_meta_box(
        'wporg_box_id',               // Unique ID
        'Custom Meta Box Title',      // Box title
        'wporg_custom_box_html',      // Content callback, must be of type callable
        'post'                        // Post type ['post', 'custom_post_type']
    );
    // You can add multiple boxes like above
}

function wporg_custom_box_html($post){
  echo 'What you put here, show\'s up in the meta box';
}
?>

在这里,您可以使用以下挂钩保存帖子数据:

<?php add_action( 'save_post', 'meta_box_save_function' ); ?>