首页 WordPress函数大全 register_rest_field()

register_rest_field()

2020-05-02 / 3797阅 / 悠然

如何你看完本文还不知道如何使用该函数,可以联系我定制视频教程,50元/个函数,学不会全额退款

register_rest_field( string|array $object_type, string $attribute, array $args = array() )

注册新字段>

Contents

  • Description
    • Parameters
    • Source
    • Changelog
  • Related
    • Uses
    • Used By
  • User Contributed Notes

描述

参数

$object_type

(string|array)
(Required)
Object(s) the field is being registered to, "post"|"term"|"comment" etc.

$attribute

(string)
(Required)
The attribute name.

$args

(array)
(Optional)
An array of arguments used to handle the registered field.

  • 'get_callback'
    (callable|null) Optional. The callback function used to retrieve the field value. Default is 'null', the field will not be returned in the response. The function will be passed the prepared object data.
  • 'update_callback'
    (callable|null) Optional. The callback function used to set and update the field value. Default is 'null', the value cannot be set or updated. The function will be passed the model object, like WP_Post.
  • 'schema'
    (array|null) Optional. The callback function used to create the schema for this field. Default is 'null', no schema entry will be returned.

Default value: array()

大家谈论
    我的见解