You will notice the following features after adding this code snippet to your website.
- Adds a Tags field to the WordPress Page editor.
- Adds a Tags column to the WordPress Pages list.
function my_allow_page_tags()
{
register_taxonomy_for_object_type("post_tag", "page");
}
add_action("init", "my_allow_page_tags");