Changeset 4573
- Timestamp:
- 12/14/2012 09:50:17 PM (13 years ago)
- File:
-
- 1 edited
-
trunk/includes/common/template-tags.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/common/template-tags.php
r4557 r4573 1337 1337 $retval = ''; 1338 1338 $disabled = disabled( isset( bbpress()->options[$r['disabled']] ), true, false ); 1339 $posts = get_posts( array( 1340 'post_type' => $r['post_type'], 1341 'post_status' => $r['post_status'], 1342 'sort_column' => $r['sort_column'], 1343 'post_parent' => $r['post_parent'], 1344 'exclude' => $r['exclude'], 1345 'numberposts' => $r['numberposts'], 1346 'orderby' => $r['orderby'], 1347 'order' => $r['order'], 1339 $posts = get_pages( array( 1340 'post_type' => $r['post_type'], 1341 'post_status' => $r['post_status'], 1342 'sort_column' => $r['sort_column'], 1343 'post_parent' => $r['post_parent'], 1344 'exclude' => $r['exclude'], 1345 'numberposts' => $r['numberposts'], 1346 'orderby' => $r['orderby'], 1347 'order' => $r['order'], 1348 'walker' => $r['walker'], 1349 'disable_categories' => $r['disable_categories'] 1348 1350 ) ); 1349 1351
Note: See TracChangeset
for help on using the changeset viewer.