In the year since 4.8, confusion about how to properly expose meta information through the REST API has been one of the most prevalend issues we've seen in support posts and tickets.
Most developers try to use register_meta
with show_in_rest => true
; unfortunately register_meta
works on object types, not subtypes, so you cannot pass a custom post type name into register_meta
like you can with register_rest_field
. Worse, if you register meta for the type 'post'
, then that meta key is registered not just for core posts, but for every single custom post type. Meta almost never applies across all post types, so this behavior forces developers to use register_rest_field
for REST API data modeling instead of taking advantage of the API's built-in meta handling.
there is no way to and this behavior makes it impossible for a developer to register meta that is specific to their single post type. and requires any REST API data modeling to use register_rest_field
[...document.getElementById('authors').querySelectorAll('li')].forEach(li => { | |
const author = li.querySelector('strong').innerText; | |
const select = li.querySelector('select'); | |
const options = [...select.querySelectorAll('option')].map(node => ({ | |
value: node.value, | |
name: node.text, | |
})); | |
const match = options.reduce((match, option) => { | |
if (match) { | |
return match; |
- Improve documentation
- Something we explain very poorly in the REST API handbook; hoping to explain it today to de-mystify
- Handbook is what was on WP-API.org -- some stuff in there is very good and some that is out of date
- We have some guides but they are not organized
- We want to come up with a coherent content architecture
- Expand the endpoints presented by the API
From Joe M, "you can get your current extensions list by typing code --list-extensions
in CLI"
His list:
alefragnani.Bookmarks
annsk.alignment
dbaeumer.vscode-eslint
donjayamanne.githistory
eamodio.gitlens
EditorConfig.EditorConfig
eg2.vscode-npm-script
var spawn = require( 'child_process' ).spawn; | |
var exec = require( 'child_process' ).exec; | |
var path = require( 'path' ); | |
var fs = require( 'fs' ); | |
/** | |
* Get the list of files in a directory, either as a list of file and subdir | |
* names or a list of absolute file system paths | |
* | |
* @private |
/* | |
RESOURCES | |
ffmpeg and libvpx with Homebrew https://gist.github.com/clayton/6196167 | |
ffmpeg docs http://ffmpeg.org/ffmpeg.html | |
http://robotics.usc.edu/~ampereir/wordpress/?p=702 | |
Compat https://developer.mozilla.org/en-US/docs/Web/HTML/Supported_media_formats | |
https://en.support.wordpress.com/accepted-filetypes/ | |
http://easywpguide.com/wordpress-manual/adding-images-other-media/inserting-video-audio-or-other-file-type/ | |
"Supported A/V formats include M4a, MP4, OGG, WebM, FLV, WMV, MP3, WAV and WMA files." | |
*/ |
'use strict'; | |
var opn = require( 'opn' ); | |
var prompt = require('prompt'); | |
var OAuth = require( 'oauth' ); | |
var oauth = new OAuth.OAuth( | |
// reqURL | |
'http://wpapi.loc/oauth1/request', | |
// accessURL |
PkMn BaseStamina BaseAttack BaseDefense Type1 Type2 BaseCaptureRate BaseFleeRate CollisionRadiusM CollisionHeightM CollisionHeadRadiusM MovementType MovementTimerS JumpTimeS AttackTimerS QuickMoves CinematicMoves AnimTime Evolution EvolutionPips PokemonClass PokedexHeightM PokedexWeightKg HeightStdDev WeightStdDev FamilyId CandyToEvolve | |
1 90 126 126 HoloPokemonType.POKEMON_TYPE_GRASS HoloPokemonType.POKEMON_TYPE_POISON 0.1599999964237213 0.10000000149011612 0.3815000057220459 0.6539999842643738 0.27250000834465027 HoloPokemonMovementType.POKEMON_ENC_MOVEMENT_JUMP 10.0 1.149999976158142 29.0 d601dd01 5a3b76 6d56d53fdaac2a3f6d56d53f93a9ea3f0000000036ab0a403333b33fbfbbbb3f 02 HoloPokemonClass.POKEMON_CLASS_NORMAL 1 0.699999988079071 6.900000095367432 0.08749999850988388 0.862500011920929 HoloPokemonFamilyId.V0001_FAMILY_BULBASAUR 25 | |
2 120 156 158 HoloPokemonType.POKEMON_TYPE_GRASS HoloPokemonType.POKEMON_TYPE_POISON 0.07999999821186066 0.07000000029802322 0.3187499940395355 0.637499988079071 0.2549999952316284 H |
<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8"/> | |
</head> | |
<body> | |
<script> | |
var seeded = false; | |
var lcg = (function() { | |
var m = 4294967296,a = 1664525,c = 1013904223,seed, z; |