# 技術検証・導入待ちメモ ###### tags: `技術情報` ■ クックブック https://blockdevelopercookbook.com/recipes/ ■ ナビゲーションブロックのカスタマイズ https://make.wordpress.org/core/2022/10/10/miscellaneous-editor-changes-for-wordpress-6-1/#navigation-block-menu-items-filter ■ グリッドの改善 https://developer.wordpress.org/news/2024/02/06/adding-and-using-grid-support-in-wordpress-themes/ ■ インタラクティブAPI https://make.wordpress.org/core/2024/03/04/interactivity-api-dev-note/ ■ Block hooks API 6.5 https://developer.wordpress.org/news/2024/03/25/exploring-the-block-hooks-api-in-wordpress-6-5/ ■ Adding and using custom settings in theme.json https://developer.wordpress.org/news/2023/08/31/adding-and-using-custom-settings-in-theme-json/ ■ Using template patterns to build multiple homepage designs https://developer.wordpress.org/news/2023/04/13/using-template-patterns-to-build-multiple-homepage-designs/ ■ theme.json 公式ドキュメント https://developer.wordpress.org/themes/global-settings-and-styles/ ■ What’s new for developers? (February 2023) https://developer.wordpress.org/news/2023/02/10/whats-new-for-developers-february-2023/ #### クエリーループブロックのカスタマイズ https://wp.me/p2AvED-pSs #### 高速化 https://wpdocs.osdn.jp/Transients_API ■ 投稿タイプの取得 / 投稿IDの取得 const editedPostType = wp.data.select( 'core/editor' ).getCurrentPostType(); const editedPostId = wp.data.select( 'core/editor' ).getCurrentPostId();