web-dev-qa-db-ja.com

カスタム投稿タイプの改訂を有効にする

カスタムの投稿タイプを作成して登録しました。

カスタム投稿タイプへの改訂を有効にする方法を誰かが手伝ってくれる?

29

CPTを登録するときは、改訂のサポートを手動で追加する必要があります。デフォルトとして設定されているのはタイトルと編集者だけです。 codex を調べてください。そのため、リビジョンを有効にする必要がある場合は、このように追加する必要があります。

'supports' => array( 'title', 'editor', 'revisions' ),

あなたのCPTを登録するときあなたの$args = array()で。

参考までに、 'supports'に渡すことができる他の引数は次のとおりです。

'title'
'editor' (content)
'author'
'thumbnail' (featured image, current theme must also support post-thumbnails)
'excerpt'
'trackbacks'
'custom-fields'
'comments' (also will see comment count balloon on edit screen)
'revisions' (will store revisions)
'page-attributes' (menu order, hierarchical must be true to show Parent option)
'post-formats' add post formats, see Post Formats

_編集_

@jammypeachのおかげで、知っておくことは重要です、投稿に対する実際のリビジョンがあるまでリビジョンメタボックスは現れないでしょう。リビジョンがない場合、リビジョンメタボックスは表示されません

47
Pieter Goosen