REST API サポートを持つカスタム投稿タイプの登録

カスタム投稿タイプを登録する際、REST API 経由で利用可能にしたい場合は、'show_in_rest' => trueregister_post_type に渡す引数に設定する必要があります。この引数を true に設定すると、wp/v2 名前空間にルートが追加されます。

  1. /**
  2. * Register a book post type, with REST API support
  3. *
  4. * Based on example at: https://developer.wordpress.org/reference/functions/register_post_type
  5. */
  6. add_action( 'init', 'my_book_cpt' );
  7. function my_book_cpt() {
  8. $args = array(
  9. 'public' => true,
  10. 'show_in_rest' => true,
  11. 'label' => 'Books'
  12. );
  13. register_post_type( 'book', $args );
  14. }

オプションで、rest_base 引数を設定してベース URL を変更できます。そうしないと、デフォルトで投稿タイプの名前が使用されます。以下の例では、「books」が rest_base の値として使用されています。これにより、ルートの URL は wp-json/wp/v2/books になり、wp-json/wp/v2/book/ というデフォルトの URL にはなりません。

さらに、rest_controller_class の引数を渡すこともできます。このクラスは WP_REST_Controller のサブクラスである必要があります。デフォルトでは、WP_REST_Posts_Controller がコントローラーとして使用されます。カスタムコントローラーを使用している場合、wp/v2 名前空間内にはない可能性があります。

以下は、完全なラベル、REST API のサポート、カスタマイズされた rest_base、およびデフォルトコントローラーの明示的な登録を伴う投稿タイプの登録の例です:

  1. /**
  2. * Register a book post type, with REST API support
  3. *
  4. * Based on example at: https://developer.wordpress.org/reference/functions/register_post_type
  5. */
  6. add_action( 'init', 'my_book_cpt' );
  7. function my_book_cpt() {
  8. $labels = array(
  9. 'name' => _x( 'Books', 'post type general name', 'your-plugin-textdomain' ),
  10. 'singular_name' => _x( 'Book', 'post type singular name', 'your-plugin-textdomain' ),
  11. 'menu_name' => _x( 'Books', 'admin menu', 'your-plugin-textdomain' ),
  12. 'name_admin_bar' => _x( 'Book', 'add new on admin bar', 'your-plugin-textdomain' ),
  13. 'add_new' => _x( 'Add New', 'book', 'your-plugin-textdomain' ),
  14. 'add_new_item' => __( 'Add New Book', 'your-plugin-textdomain' ),
  15. 'new_item' => __( 'New Book', 'your-plugin-textdomain' ),
  16. 'edit_item' => __( 'Edit Book', 'your-plugin-textdomain' ),
  17. 'view_item' => __( 'View Book', 'your-plugin-textdomain' ),
  18. 'all_items' => __( 'All Books', 'your-plugin-textdomain' ),
  19. 'search_items' => __( 'Search Books', 'your-plugin-textdomain' ),
  20. 'parent_item_colon' => __( 'Parent Books:', 'your-plugin-textdomain' ),
  21. 'not_found' => __( 'No books found.', 'your-plugin-textdomain' ),
  22. 'not_found_in_trash' => __( 'No books found in Trash.', 'your-plugin-textdomain' )
  23. );
  24. $args = array(
  25. 'labels' => $labels,
  26. 'description' => __( 'Description.', 'your-plugin-textdomain' ),
  27. 'public' => true,
  28. 'publicly_queryable' => true,
  29. 'show_ui' => true,
  30. 'show_in_menu' => true,
  31. 'query_var' => true,
  32. 'rewrite' => array( 'slug' => 'book' ),
  33. 'capability_type' => 'post',
  34. 'has_archive' => true,
  35. 'hierarchical' => false,
  36. 'menu_position' => null,
  37. 'show_in_rest' => true,
  38. 'rest_base' => 'books',
  39. 'rest_controller_class' => 'WP_REST_Posts_Controller',
  40. 'supports' => array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'comments' )
  41. );
  42. register_post_type( 'book', $args );
  43. }

カスタム rest_controller_class を使用している場合、REST API は特定の投稿のルートを自動的に決定できません。この場合、rest_route_for_post フィルターを使用してこの情報を提供できます。これにより、カスタム投稿タイプが検索エンドポイントで適切にフォーマットされ、自動発見リンクが有効になります。

  1. function my_plugin_rest_route_for_post( $route, $post ) {
  2. if ( $post->post_type === 'book' ) {
  3. $route = '/wp/v2/books/' . $post->ID;
  4. }
  5. return $route;
  6. }
  7. add_filter( 'rest_route_for_post', 'my_plugin_rest_route_for_post', 10, 2 );

REST API サポートを持つカスタムタクソノミーの登録

REST API サポートを持つカスタムタクソノミーの登録は、カスタム投稿タイプの登録と非常に似ています:'show_in_rest' => trueregister_taxonomy に渡す引数に設定します。オプションで、rest_base を渡してタクソノミーのルートのベース URL を変更できます。

タクソノミーのデフォルトコントローラーは WP_REST_Terms_Controller です。カスタムコントローラーを使用する場合は、rest_controller_class でこれを変更できます。

以下は、REST API サポートを持つカスタムタクソノミーを登録する方法の例です:

  1. /**
  2. * Register a genre post type, with REST API support
  3. *
  4. * Based on example at: https://developer.wordpress.org/reference/functions/register_taxonomy/
  5. */
  6. add_action( 'init', 'my_book_taxonomy', 30 );
  7. function my_book_taxonomy() {
  8. $labels = array(
  9. 'name' => _x( 'Genres', 'taxonomy general name' ),
  10. 'singular_name' => _x( 'Genre', 'taxonomy singular name' ),
  11. 'search_items' => __( 'Search Genres' ),
  12. 'all_items' => __( 'All Genres' ),
  13. 'parent_item' => __( 'Parent Genre' ),
  14. 'parent_item_colon' => __( 'Parent Genre:' ),
  15. 'edit_item' => __( 'Edit Genre' ),
  16. 'update_item' => __( 'Update Genre' ),
  17. 'add_new_item' => __( 'Add New Genre' ),
  18. 'new_item_name' => __( 'New Genre Name' ),
  19. 'menu_name' => __( 'Genre' ),
  20. );
  21. $args = array(
  22. 'hierarchical' => true,
  23. 'labels' => $labels,
  24. 'show_ui' => true,
  25. 'show_admin_column' => true,
  26. 'query_var' => true,
  27. 'rewrite' => array( 'slug' => 'genre' ),
  28. 'show_in_rest' => true,
  29. 'rest_base' => 'genre',
  30. 'rest_controller_class' => 'WP_REST_Terms_Controller',
  31. );
  32. register_taxonomy( 'genre', array( 'book' ), $args );
  33. }

カスタム rest_controller_class を使用している場合、REST API は特定の用語のルートを自動的に決定できません。この場合、rest_route_for_term フィルターを使用してこの情報を提供できます。これにより、カスタムタクソノミーが検索エンドポイントで適切にフォーマットされ、自動発見リンクが有効になります。

  1. function my_plugin_rest_route_for_term( $route, $term ) {
  2. if ( $term->taxonomy === 'genre' ) {
  3. $route = '/wp/v2/genre/' . $term->term_id;
  4. }
  5. return $route;
  6. }
  7. add_filter( 'rest_route_for_term', 'my_plugin_rest_route_for_term', 10, 2 );

既存のコンテンツタイプに REST API サポートを追加する

カスタム投稿タイプやカスタムタクソノミーに対して、例えば使用しているテーマやプラグインの制御ができない場合に REST API サポートを追加する必要がある場合、WordPress バージョン 4.6.0 以降に存在する register_post_type_args フィルターフックを使用できます。

  1. /**
  2. * Add REST API support to an already registered post type.
  3. */
  4. add_filter( 'register_post_type_args', 'my_post_type_args', 10, 2 );
  5. function my_post_type_args( $args, $post_type ) {
  6. if ( 'book' === $post_type ) {
  7. $args['show_in_rest'] = true;
  8. // Optionally customize the rest_base or rest_controller_class
  9. $args['rest_base'] = 'books';
  10. $args['rest_controller_class'] = 'WP_REST_Posts_Controller';
  11. }
  12. return $args;
  13. }

カスタムタクソノミーの場合もほぼ同じです。WordPress バージョン 4.4.0 以降に存在する register_taxonomy_args フィルターを使用できます。

  1. /**
  2. * Add REST API support to an already registered taxonomy.
  3. */
  4. add_filter( 'register_taxonomy_args', 'my_taxonomy_args', 10, 2 );
  5. function my_taxonomy_args( $args, $taxonomy_name ) {
  6. if ( 'genre' === $taxonomy_name ) {
  7. $args['show_in_rest'] = true;
  8. // Optionally customize the rest_base or rest_controller_class
  9. $args['rest_base'] = 'genres';
  10. $args['rest_controller_class'] = 'WP_REST_Terms_Controller';
  11. }
  12. return $args;
  13. }

カスタムリンク関係

タクソノミーとカスタム投稿タイプは WordPress 内で組み込みの関連付けを持っていますが、2 つのカスタム投稿タイプの間にリンクを確立したい場合はどうでしょうか?これは WordPress 自体では正式にサポートされていませんが、_link 関係を使用して任意のコンテンツタイプ間に独自の接続を作成できます。