PluginProbe ʕ •ᴥ•ʔ
Secure Custom Fields / 6.9.4
Secure Custom Fields v6.9.4
6.9.5 6.9.4 6.9.3 6.9.2 6.9.1 6.9.0 6.8.9 6.8.7 6.8.8 6.8.6 6.8.4 6.8.5 trunk 6.4.0-beta1 6.4.0-beta2 6.4.1 6.4.1-beta3 6.4.1-beta4 6.4.1-beta5 6.4.1-beta6 6.4.1-beta7 6.4.2 6.5.0 6.5.1 6.5.2 6.5.3 6.5.4 6.5.5 6.5.6 6.5.7 6.6.0 6.7.0 6.7.1 6.8.0 6.8.1 6.8.2 6.8.3
secure-custom-fields / schemas / field-fragments / relational / post-object.schema.json
secure-custom-fields / schemas / field-fragments / relational Last commit date
link.schema.json 7 months ago page-link.schema.json 7 months ago post-object.schema.json 7 months ago relationship.schema.json 7 months ago taxonomy.schema.json 7 months ago user.schema.json 7 months ago
post-object.schema.json
27 lines
1 {
2 "title": "SCF Post Object Field Fragment",
3 "description": "Type-specific properties for post object fields",
4 "type": "object",
5 "properties": {
6 "type": {
7 "enum": [ "post_object" ]
8 },
9 "post_type": { "$ref": "#/definitions/post_type" },
10 "taxonomy": { "$ref": "#/definitions/taxonomy_filter" },
11 "allow_null": { "$ref": "#/definitions/allow_null" },
12 "multiple": { "$ref": "#/definitions/multiple" },
13 "return_format": {
14 "type": "string",
15 "enum": [ "object", "id" ],
16 "default": "object",
17 "description": "Value returned (WP_Post object or post ID)"
18 },
19 "ui": {
20 "type": "integer",
21 "default": 1,
22 "description": "Use enhanced Select2 UI (1 for yes, 0 for no)"
23 },
24 "bidirectional_target": { "$ref": "#/definitions/bidirectional_target" }
25 }
26 }
27