• Resolved digitalcam

    (@digitalcam)


    I added the following code to my (child theme) functions.php – which adds Categories and Tags to pages.

    function myplugin_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 init hook of your theme functions.php file
    add_action( 'init', 'myplugin_settings' );

    And it works great except the pages which have been assigned Categories and Tags do not show up on the Category or Tag archive pages.

    They show up on site search results but not on the Category or Tag archive pages.

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)

The topic ‘Category Archives & Pages’ is closed to new replies.