Skip to content

Instantly share code, notes, and snippets.

@kurudrive
Created November 17, 2022 08:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kurudrive/61dd1eefcd2d00832964c38399eb05c7 to your computer and use it in GitHub Desktop.
Save kurudrive/61dd1eefcd2d00832964c38399eb05c7 to your computer and use it in GitHub Desktop.
固定ページにカスタム分類「固定ページ」タグを追加する
// 子テーマの functions.php などに記載してください。
// 設定 > パーマリンク を必ず保存してください。
add_action( 'init', 'my_create_page_tag' );
function my_create_page_tag() {
register_taxonomy(
'page-tag',
'page',
array(
'label' => '固定ページタグ',
'rewrite' => array( 'slug' => 'page-tag' ),
'hierarchical' => true,
)
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment