Get Pages by Category
-
I’m trying to make a list of pages by category. I downloaded your plugin, assigned pages to a category and added the following to my template:
<ul><?php $wedding_links = get_posts(array( 'category' => 'our-wedding', 'post_type' => 'page', 'post_status' => 'publish', 'orderby' => 'menu_order' )); foreach($wedding_links as $link){ echo '<li><a href="'.get_page_link($link->ID).'">'.$link->post_title.'</a></li>'; } ?></ul>
Instead of posting the 4 pages I want, it lists 5 random pages. Am I not suppose to get_posts? get_pages and wp_list_pages didn’t work either.
https://www.ads-software.com/plugins/post-tags-and-categories-for-pages/
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Get Pages by Category’ is closed to new replies.