You are here

Adding Categories and Tags to pages

function catgtopages_settings() { 
    // Add tag metabox to page
    register_taxonomy_for_object_type('post_tag', 'page');
    // Add category metabox to page
    register_taxonomy_for_object_type('category', 'page'); 
}
// Add to the admin_init hook of your theme functions.php file
add_action( 'init', 'catgtopages_settings' );
code type: