Show Pages in a Category
-
Hi there,
I understand that pages aren’t posts, so don’t usually have a category. But that fact aside i need to show pages in a particular category.
i added this to functions.php:
// Adds categories to pages add_action('admin_init', 'reg_tax'); function reg_tax() { register_taxonomy_for_object_type('category', 'page'); add_post_type_support('page', 'category'); }
i thought that i could show pages in that particular category. but i have no idea how…
the pages don’t show up in the archive page for that category, and get_pages doesn’t have the option to filter by category.
nightmare! if you can help please do! thanks ??
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Show Pages in a Category’ is closed to new replies.