Changeset 3974 for branches/plugin/bbp-includes/bbp-common-functions.php
- Timestamp:
- 06/18/2012 03:24:18 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/plugin/bbp-includes/bbp-common-functions.php
r3973 r3974 1433 1433 query_posts( array( 1434 1434 'post_type' => bbp_get_forum_post_type(), 1435 'ID' => $forum_id 1435 'ID' => $forum_id, 1436 'feed' => true 1436 1437 ) ); 1437 1438 … … 1450 1451 $the_query = array( 1451 1452 'author' => 0, 1453 'feed' => true, 1452 1454 'post_type' => bbp_get_reply_post_type(), 1453 1455 'post_parent' => 'any', … … 1467 1469 $the_query = array( 1468 1470 'author' => 0, 1471 'feed' => true, 1469 1472 'post_type' => bbp_get_topic_post_type(), 1470 1473 'post_parent' => 'any', … … 1488 1491 $the_query = array( 1489 1492 'author' => 0, 1493 'feed' => true, 1490 1494 'post_type' => array( bbp_get_reply_post_type(), bbp_get_topic_post_type() ), 1491 1495 'post_parent' => 'any', … … 1511 1515 query_posts( array( 1512 1516 'post_type' => bbp_get_topic_post_type(), 1513 'name' => $query_vars[bbp_get_topic_post_type()] 1517 'name' => $query_vars[bbp_get_topic_post_type()], 1518 'feed' => true 1514 1519 ) ); 1515 1520 … … 1523 1528 $the_query = array( 1524 1529 'author' => 0, 1530 'feed' => true, 1525 1531 'post_parent' => 'any', 1526 1532 'posts_per_page' => bbp_get_topics_per_rss_page(), 1527 'show_stickies' => false ,1533 'show_stickies' => false 1528 1534 ); 1529 1535 … … 1540 1546 $the_query = array( 1541 1547 'posts_per_page' => bbp_get_replies_per_rss_page(), 1542 'meta_query' => array( array( ) ) 1548 'meta_query' => array( array( ) ), 1549 'feed' => true 1543 1550 ); 1544 1551
Note: See TracChangeset
for help on using the changeset viewer.