LoginSignup
1
1

More than 5 years have passed since last update.

[WP] 固定ページにタグを入れる方法

Posted at

functions.phpに下記を追記

functions.php
function add_tag_to_page() {
 register_taxonomy_for_object_type('post_tag', 'page');
}
add_action('init', 'add_tag_to_page');

参考元:固定ページでも投稿タグを設定出来るようにしたい。 : おばけノート

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1