最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

functions - WP doesn't show Array Custom Fields?

programmeradmin2浏览0评论

I'm wondering why WordPress doesn't list PHP array() and any serialized data in Custom Fields in Admin Panel (for Pages, Posts etc.)? Only Custom Fields containing strings and numbers show up and can be edited by user manually.

Edit: Why aren't post meta values displayed if they are stored as a non-string value, meaning, stored as either arrays or a serialized value ?

Example: If a post has a meta key 'custom-meta' with a string value as 'yes', it is displayed in the meta box, but if it has an array value like array('value' => 'yes'), it is not displayed in the meta box.

Can I enable this?

I'm wondering why WordPress doesn't list PHP array() and any serialized data in Custom Fields in Admin Panel (for Pages, Posts etc.)? Only Custom Fields containing strings and numbers show up and can be edited by user manually.

Edit: Why aren't post meta values displayed if they are stored as a non-string value, meaning, stored as either arrays or a serialized value ?

Example: If a post has a meta key 'custom-meta' with a string value as 'yes', it is displayed in the meta box, but if it has an array value like array('value' => 'yes'), it is not displayed in the meta box.

Can I enable this?

Share Improve this question edited Oct 19, 2012 at 16:47 Adam 16.5k1 gold badge45 silver badges62 bronze badges asked Oct 19, 2012 at 15:27 PaulPaul 1171 silver badge5 bronze badges 4
  • What admin panel are you talking about? Please add a screen hot. – fuxia Commented Oct 19, 2012 at 15:53
  • 1 Custom Fields are available only in 1 place - in post/page editing screen. – Paul Commented Oct 19, 2012 at 16:05
  • I have rephrased the question, hope it's a bit more clear now! – Rutwick Gangurde Commented Oct 19, 2012 at 16:11
  • Thanks for re-writing this with examples :) But I'm still looking for some clarification. Why arrays don't show up? – Paul Commented Oct 20, 2012 at 16:07
Add a comment  | 

3 Answers 3

Reset to default 4

There is no filter to change that behavior, you would have to replace the entire metabox.

On the other hand: I think there is no really simple way to show and to save those arrays.

Example for a fictive meta key 'foo':

array (
    0 => 2,
    'hello' => array (
        0 => 2,
        'hello' => 'world'
    )
)

Creating a default interface for such an array would be very hard. This metabox is for simple fields, it should be easy to use. And you cannot just present the serialized string: editing that would probably break it. So I think it is a compromise. Better than nothing, but not perfect.

I think you can use serialize()

Example:

$value = array('value' => 'yes');
$new_value = serialize($value);
add_post_meta($post_id,'meta_key',$new_value);

Then, you can see the metabox in admin panel.

For those landing here, you could always just create a custom page template on a private page and then just throw something like this on the template page file:

/*Template Name: Test Post Meta */
$thisPostMeta = get_post_meta($yourPostId, 'meta_key');

//Check for type of value
if (is_array($thisPostMeta)) {
print_r($thisPostMeta); 
} else {
echo $thisPostMeta;
}

Note: untested.

发布评论

评论列表(0)

  1. 暂无评论