Created
November 17, 2022 08:02
-
-
Save kurudrive/61dd1eefcd2d00832964c38399eb05c7 to your computer and use it in GitHub Desktop.
固定ページにカスタム分類「固定ページ」タグを追加する
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 子テーマの 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