Changes between Initial Version and Version 2 of Ticket #17590
- Timestamp:
- 08/10/2011 04:11:32 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #17590
- Property Cc ben@… added
-
Ticket #17590 – Description
initial v2 8 8 9 9 The problem seems to be this row in wp_list_pages(): 10 {{{ 10 11 if ( is_page() || is_attachment() || $wp_query->is_posts_page ) 12 }}} 11 13 12 14 In the following patch i've changed it to 15 {{{ 13 16 if ( is_page() || is_attachment() || $wp_query->is_posts_page || ($wp_query->query_vars['post_type'] != 'post' && is_single()) ) 17 }}} 14 18 15 19 (If this is not the intended behavoir please let me know. )