Changeset 5951 for trunk/src/includes/replies/template.php
- Timestamp:
- 10/28/2015 04:07:50 AM (10 years ago)
- File:
-
- 1 edited
-
trunk/src/includes/replies/template.php (modified) (105 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/replies/template.php
r5908 r5951 16 16 * Return the unique id of the custom post type for replies 17 17 * 18 * @since bbPress (r2857)18 * @since 2.0.0 bbPress (r2857) 19 19 * 20 20 * @uses bbp_get_reply_post_type() To get the reply post type … … 26 26 * Return the unique id of the custom post type for replies 27 27 * 28 * @since bbPress (r2857)28 * @since 2.0.0 bbPress (r2857) 29 29 * 30 30 * @uses apply_filters() Calls 'bbp_get_forum_post_type' with the forum … … 39 39 * Return array of labels used by the reply post type 40 40 * 41 * @since bbPress (r5129)41 * @since 2.5.0 bbPress (r5129) 42 42 * 43 43 * @return array … … 66 66 * Return array of reply post type rewrite settings 67 67 * 68 * @since bbPress (r5129)68 * @since 2.5.0 bbPress (r5129) 69 69 * 70 70 * @return array … … 80 80 * Return array of features the reply post type supports 81 81 * 82 * @since bbPress (rx5129)82 * @since 2.5.0 bbPress (r5129) 83 83 * 84 84 * @return array … … 97 97 * The main reply loop. WordPress makes this easy for us 98 98 * 99 * @since bbPress (r2553)99 * @since 2.0.0 bbPress (r2553) 100 100 * 101 101 * @param array $args All the arguments supported by {@link WP_Query} … … 286 286 * Whether there are more replies available in the loop 287 287 * 288 * @since bbPress (r2553)288 * @since 2.0.0 bbPress (r2553) 289 289 * 290 290 * @uses WP_Query bbPress::reply_query::have_posts() To check if there are more … … 308 308 * Loads up the current reply in the loop 309 309 * 310 * @since bbPress (r2553)310 * @since 2.0.0 bbPress (r2553) 311 311 * 312 312 * @uses WP_Query bbPress::reply_query::the_post() To get the current reply … … 320 320 * Output reply id 321 321 * 322 * @since bbPress (r2553)322 * @since 2.0.0 bbPress (r2553) 323 323 * 324 324 * @param $reply_id Optional. Used to check emptiness … … 331 331 * Return the id of the reply in a replies loop 332 332 * 333 * @since bbPress (r2553)333 * @since 2.0.0 bbPress (r2553) 334 334 * 335 335 * @param $reply_id Optional. Used to check emptiness … … 381 381 * Gets a reply 382 382 * 383 * @since bbPress (r2787)383 * @since 2.0.0 bbPress (r2787) 384 384 * 385 385 * @param int|object $reply reply id or reply object … … 424 424 * Output the link to the reply in the reply loop 425 425 * 426 * @since bbPress (r2553)426 * @since 2.0.0 bbPress (r2553) 427 427 * 428 428 * @param int $reply_id Optional. Reply id … … 435 435 * Return the link to the reply 436 436 * 437 * @since bbPress (r2553)437 * @since 2.0.0 bbPress (r2553) 438 438 * 439 439 * @param int $reply_id Optional. Reply id … … 452 452 * Output the paginated url to the reply in the reply loop 453 453 * 454 * @since bbPress (r2679)454 * @since 2.0.0 bbPress (r2679) 455 455 * 456 456 * @param int $reply_id Optional. Reply id … … 463 463 * Return the paginated url to the reply in the reply loop 464 464 * 465 * @since bbPress (r2679)465 * @since 2.0.0 bbPress (r2679) 466 466 * 467 467 * @param int $reply_id Optional. Reply id … … 526 526 * Output the title of the reply 527 527 * 528 * @since bbPress (r2553)528 * @since 2.0.0 bbPress (r2553) 529 529 * 530 530 * @param int $reply_id Optional. Reply id … … 538 538 * Return the title of the reply 539 539 * 540 * @since bbPress (r2553)540 * @since 2.0.0 bbPress (r2553) 541 541 * 542 542 * @param int $reply_id Optional. Reply id … … 556 556 * Get empty reply title fallback. 557 557 * 558 * @since bbPress (r5177)558 * @since 2.5.0 bbPress (r5177) 559 559 * 560 560 * @param string $post_title Required. Reply Title … … 583 583 * Output the content of the reply 584 584 * 585 * @since bbPress (r2553)585 * @since 2.0.0 bbPress (r2553) 586 586 * 587 587 * @param int $reply_id Optional. reply id … … 594 594 * Return the content of the reply 595 595 * 596 * @since bbPress (r2780)596 * @since 2.0.0 bbPress (r2780) 597 597 * 598 598 * @param int $reply_id Optional. reply id … … 621 621 * Output the excerpt of the reply 622 622 * 623 * @since bbPress (r2751)623 * @since 2.0.0 bbPress (r2751) 624 624 * 625 625 * @param int $reply_id Optional. Reply id … … 633 633 * Return the excerpt of the reply 634 634 * 635 * @since bbPress (r2751)635 * @since 2.0.0 bbPress (r2751) 636 636 * 637 637 * @param int $reply_id Optional. Reply id … … 674 674 * Output the post date and time of a reply 675 675 * 676 * @since bbPress (r4155)676 * @since 2.2.0 bbPress (r4155) 677 677 * 678 678 * @param int $reply_id Optional. Reply id. … … 687 687 * Return the post date and time of a reply 688 688 * 689 * @since bbPress (r4155)689 * @since 2.2.0 bbPress (r4155) 690 690 * 691 691 * @param int $reply_id Optional. Reply id. … … 720 720 * Append revisions to the reply content 721 721 * 722 * @since bbPress (r2782)722 * @since 2.0.0 bbPress (r2782) 723 723 * 724 724 * @param string $content Optional. Content to which we need to append the revisions to … … 745 745 * Output the revision log of the reply 746 746 * 747 * @since bbPress (r2782)747 * @since 2.0.0 bbPress (r2782) 748 748 * 749 749 * @param int $reply_id Optional. Reply id … … 756 756 * Return the formatted revision log of the reply 757 757 * 758 * @since bbPress (r2782)758 * @since 2.0.0 bbPress (r2782) 759 759 * 760 760 * @param int $reply_id Optional. Reply id … … 827 827 * Return the raw revision log of the reply 828 828 * 829 * @since bbPress (r2782)829 * @since 2.0.0 bbPress (r2782) 830 830 * 831 831 * @param int $reply_id Optional. Reply id … … 847 847 * Return the revisions of the reply 848 848 * 849 * @since bbPress (r2782)849 * @since 2.0.0 bbPress (r2782) 850 850 * 851 851 * @param int $reply_id Optional. Reply id … … 866 866 * Return the revision count of the reply 867 867 * 868 * @since bbPress (r2782)868 * @since 2.0.0 bbPress (r2782) 869 869 * 870 870 * @param int $reply_id Optional. Reply id … … 885 885 * Output the status of the reply 886 886 * 887 * @since bbPress (r2667)887 * @since 2.0.0 bbPress (r2667) 888 888 * 889 889 * @param int $reply_id Optional. Reply id … … 896 896 * Return the status of the reply 897 897 * 898 * @since bbPress (r2667)898 * @since 2.0.0 bbPress (r2667) 899 899 * 900 900 * @param int $reply_id Optional. Reply id … … 912 912 * Is the reply not spam or deleted? 913 913 * 914 * @since bbPress (r3496)914 * @since 2.0.0 bbPress (r3496) 915 915 * 916 916 * @param int $reply_id Optional. Topic id … … 927 927 * Is the reply marked as spam? 928 928 * 929 * @since bbPress (r2740)929 * @since 2.0.0 bbPress (r2740) 930 930 * 931 931 * @param int $reply_id Optional. Reply id … … 942 942 * Is the reply trashed? 943 943 * 944 * @since bbPress (r2884)944 * @since 2.0.0 bbPress (r2884) 945 945 * 946 946 * @param int $reply_id Optional. Topic id … … 957 957 * Is the reply pending? 958 958 * 959 * @since bbPress (r5507)959 * @since 2.6.0 bbPress (r5507) 960 960 * 961 961 * @param int $reply_id Optional. Topic id … … 973 973 * Is the reply private? 974 974 * 975 * @since bbPress (r5507)975 * @since 2.6.0 bbPress (r5507) 976 976 * 977 977 * @param int $reply_id Optional. Topic id … … 989 989 * Is the reply by an anonymous user? 990 990 * 991 * @since bbPress (r2753)991 * @since 2.0.0 bbPress (r2753) 992 992 * 993 993 * @param int $reply_id Optional. Reply id … … 1019 1019 * Output the author of the reply 1020 1020 * 1021 * @since bbPress (r2667) 1022 * @deprecated bbPress (r5119) 1021 * @since 2.0.0 bbPress (r2667) 1022 * 1023 * @deprecated 2.5.0 bbPress (r5119) 1023 1024 * 1024 1025 * @param int $reply_id Optional. Reply id … … 1033 1034 * Return the author of the reply 1034 1035 * 1035 * @since bbPress (r2667) 1036 * @deprecated bbPress (r5119) 1036 * @since 2.0.0 bbPress (r2667) 1037 * 1038 * @deprecated 2.5.0 bbPress (r5119) 1037 1039 * 1038 1040 * @param int $reply_id Optional. Reply id … … 1061 1063 * Output the author ID of the reply 1062 1064 * 1063 * @since bbPress (r2667)1065 * @since 2.0.0 bbPress (r2667) 1064 1066 * 1065 1067 * @param int $reply_id Optional. Reply id … … 1072 1074 * Return the author ID of the reply 1073 1075 * 1074 * @since bbPress (r2667)1076 * @since 2.0.0 bbPress (r2667) 1075 1077 * 1076 1078 * @param int $reply_id Optional. Reply id … … 1091 1093 * Output the author display_name of the reply 1092 1094 * 1093 * @since bbPress (r2667)1095 * @since 2.0.0 bbPress (r2667) 1094 1096 * 1095 1097 * @param int $reply_id Optional. Reply id … … 1102 1104 * Return the author display_name of the reply 1103 1105 * 1104 * @since bbPress (r2667)1106 * @since 2.0.0 bbPress (r2667) 1105 1107 * 1106 1108 * @param int $reply_id Optional. Reply id … … 1153 1155 * Output the author avatar of the reply 1154 1156 * 1155 * @since bbPress (r2667)1157 * @since 2.0.0 bbPress (r2667) 1156 1158 * 1157 1159 * @param int $reply_id Optional. Reply id … … 1165 1167 * Return the author avatar of the reply 1166 1168 * 1167 * @since bbPress (r2667)1169 * @since 2.0.0 bbPress (r2667) 1168 1170 * 1169 1171 * @param int $reply_id Optional. Reply id … … 1198 1200 * Output the author link of the reply 1199 1201 * 1200 * @since bbPress (r2717)1202 * @since 2.0.0 bbPress (r2717) 1201 1203 * 1202 1204 * @param array $args Optional. If it is an integer, it is used as reply id. … … 1209 1211 * Return the author link of the reply 1210 1212 * 1211 * @since bbPress (r2717)1213 * @since 2.0.0 bbPress (r2717) 1212 1214 * 1213 1215 * @param array $args Optional. If an integer, it is used as reply id. … … 1308 1310 * Output the author url of the reply 1309 1311 * 1310 * @since bbPress (r2667)1312 * @since 2.0.0 bbPress (r2667) 1311 1313 * 1312 1314 * @param int $reply_id Optional. Reply id … … 1319 1321 * Return the author url of the reply 1320 1322 * 1321 * @since bbPress (r2667)1323 * @since 2.0.0 bbPress (r2667) 1322 1324 * 1323 1325 * @param int $reply_id Optional. Reply id … … 1352 1354 * Output the reply author email address 1353 1355 * 1354 * @since bbPress (r3445)1356 * @since 2.0.0 bbPress (r3445) 1355 1357 * 1356 1358 * @param int $reply_id Optional. Reply id … … 1363 1365 * Return the reply author email address 1364 1366 * 1365 * @since bbPress (r3445)1367 * @since 2.0.0 bbPress (r3445) 1366 1368 * 1367 1369 * @param int $reply_id Optional. Reply id … … 1405 1407 * Output the reply author role 1406 1408 * 1407 * @since bbPress (r3860)1409 * @since 2.1.0 bbPress (r3860) 1408 1410 * 1409 1411 * @param array $args Optional. … … 1416 1418 * Return the reply author role 1417 1419 * 1418 * @since bbPress (r3860)1420 * @since 2.1.0 bbPress (r3860) 1419 1421 * 1420 1422 * @param array $args Optional. … … 1455 1457 * Output the topic title a reply belongs to 1456 1458 * 1457 * @since bbPress (r2553)1459 * @since 2.0.0 bbPress (r2553) 1458 1460 * 1459 1461 * @param int $reply_id Optional. Reply id … … 1466 1468 * Return the topic title a reply belongs to 1467 1469 * 1468 * @since bbPress (r2553)1470 * @since 2.0.0 bbPress (r2553) 1469 1471 * 1470 1472 * @param int $reply_id Optional. Reply id … … 1486 1488 * Output the topic id a reply belongs to 1487 1489 * 1488 * @since bbPress (r2553)1490 * @since 2.0.0 bbPress (r2553) 1489 1491 * 1490 1492 * @param int $reply_id Optional. Reply id … … 1497 1499 * Return the topic id a reply belongs to 1498 1500 * 1499 * @since bbPress (r2553)1501 * @since 2.0.0 bbPress (r2553) 1500 1502 * 1501 1503 * @param int $reply_id Optional. Reply id … … 1527 1529 * Output the forum id a reply belongs to 1528 1530 * 1529 * @since bbPress (r2679)1531 * @since 2.0.0 bbPress (r2679) 1530 1532 * 1531 1533 * @param int $reply_id Optional. Reply id … … 1538 1540 * Return the forum id a reply belongs to 1539 1541 * 1540 * @since bbPress (r2679)1542 * @since 2.0.0 bbPress (r2679) 1541 1543 * 1542 1544 * @param int $reply_id Optional. Reply id … … 1567 1569 * Output the reply's ancestor reply id 1568 1570 * 1569 * @since bbPress (r4944)1571 * @since 2.4.0 bbPress (r4944) 1570 1572 * 1571 1573 * @param int $reply_id Optional. Reply id … … 1578 1580 * Return the reply's ancestor reply id 1579 1581 * 1580 * @since bbPress (r4944)1582 * @since 2.4.0 bbPress (r4944) 1581 1583 * 1582 1584 * @param in $reply_id Reply id … … 1606 1608 * Output the reply to id of a reply 1607 1609 * 1608 * @since bbPress (r4944)1610 * @since 2.4.0 bbPress (r4944) 1609 1611 * 1610 1612 * @param int $reply_id Optional. Reply id … … 1617 1619 * Return the reply to id of a reply 1618 1620 * 1619 * @since bbPress (r4944)1621 * @since 2.4.0 bbPress (r4944) 1620 1622 * 1621 1623 * @param int $reply_id Optional. Reply id … … 1645 1647 * Output the link for the reply to 1646 1648 * 1647 * @since bbPress (r4944)1649 * @since 2.4.0 bbPress (r4944) 1648 1650 * 1649 1651 * @param array $args … … 1657 1659 * Return the link for a reply to a reply 1658 1660 * 1659 * @since bbPress (r4944)1661 * @since 2.4.0 bbPress (r4944) 1660 1662 * 1661 1663 * @param array $args Arguments … … 1723 1725 * Output the reply to a reply cancellation link 1724 1726 * 1725 * @since bbPress (r4944)1727 * @since 2.4.0 bbPress (r4944) 1726 1728 * 1727 1729 * @uses bbp_get_cancel_reply_to_link() To get the reply cancellation link … … 1733 1735 * Return the cancellation link for a reply to a reply 1734 1736 * 1735 * @since bbPress (r4944)1737 * @since 2.4.0 bbPress (r4944) 1736 1738 * 1737 1739 * @param string $text The cancel text … … 1765 1767 * Output the numeric position of a reply within a topic 1766 1768 * 1767 * @since bbPress (r2984)1769 * @since 2.0.0 bbPress (r2984) 1768 1770 * 1769 1771 * @param int $reply_id Optional. Reply id … … 1777 1779 * Return the numeric position of a reply within a topic 1778 1780 * 1779 * @since bbPress (r2984)1781 * @since 2.0.0 bbPress (r2984) 1780 1782 * 1781 1783 * @param int $reply_id Optional. Reply id … … 1831 1833 * Output admin links for reply 1832 1834 * 1833 * @since bbPress (r2667)1835 * @since 2.0.0 bbPress (r2667) 1834 1836 * 1835 1837 * @param array $args See {@link bbp_get_reply_admin_links()} … … 1842 1844 * Return admin links for reply 1843 1845 * 1844 * @since bbPress (r2667)1846 * @since 2.0.0 bbPress (r2667) 1845 1847 * 1846 1848 * @param array $args This function supports these arguments: … … 1931 1933 * Output the edit link of the reply 1932 1934 * 1933 * @since bbPress (r2740)1935 * @since 2.0.0 bbPress (r2740) 1934 1936 * 1935 1937 * @param array $args See {@link bbp_get_reply_edit_link()} … … 1943 1945 * Return the edit link of the reply 1944 1946 * 1945 * @since bbPress (r2740)1947 * @since 2.0.0 bbPress (r2740) 1946 1948 * 1947 1949 * @param array $args This function supports these arguments: … … 1996 1998 * Output URL to the reply edit page 1997 1999 * 1998 * @since bbPress (r2753)2000 * @since 2.0.0 bbPress (r2753) 1999 2001 * 2000 2002 * @param int $reply_id Optional. Reply id … … 2007 2009 * Return URL to the reply edit page 2008 2010 * 2009 * @since bbPress (r2753)2011 * @since 2.0.0 bbPress (r2753) 2010 2012 * 2011 2013 * @param int $reply_id Optional. Reply id … … 2049 2051 * Output the trash link of the reply 2050 2052 * 2051 * @since bbPress (r2740)2053 * @since 2.0.0 bbPress (r2740) 2052 2054 * 2053 2055 * @param array $args See {@link bbp_get_reply_trash_link()} … … 2061 2063 * Return the trash link of the reply 2062 2064 * 2063 * @since bbPress (r2740)2065 * @since 2.0.0 bbPress (r2740) 2064 2066 * 2065 2067 * @param array $args This function supports these arguments: … … 2125 2127 * Output the spam link of the reply 2126 2128 * 2127 * @since bbPress (r2740)2129 * @since 2.0.0 bbPress (r2740) 2128 2130 * 2129 2131 * @param array $args See {@link bbp_get_reply_spam_link()} … … 2137 2139 * Return the spam link of the reply 2138 2140 * 2139 * @since bbPress (r2740)2141 * @since 2.0.0 bbPress (r2740) 2140 2142 * 2141 2143 * @param array $args This function supports these arguments: … … 2188 2190 * Output the move link of the reply 2189 2191 * 2190 * @since bbPress (r4521)2192 * @since 2.3.0 bbPress (r4521) 2191 2193 * 2192 2194 * @param array $args See {@link bbp_get_reply_move_link()} … … 2202 2204 * Return the move link of the reply 2203 2205 * 2204 * @since bbPress (r4521)2206 * @since 2.3.0 bbPress (r4521) 2205 2207 * 2206 2208 * @param array $args This function supports these arguments: … … 2256 2258 * Output the split link of the topic (but is bundled with each reply) 2257 2259 * 2258 * @since bbPress (r2756)2260 * @since 2.0.0 bbPress (r2756) 2259 2261 * 2260 2262 * @param array $args See {@link bbp_get_topic_split_link()} … … 2270 2272 * Return the split link of the topic (but is bundled with each reply) 2271 2273 * 2272 * @since bbPress (r2756)2274 * @since 2.0.0 bbPress (r2756) 2273 2275 * 2274 2276 * @param array $args This function supports these arguments: … … 2322 2324 * Output the approve link of the reply 2323 2325 * 2324 * @since bbPress (r5507)2326 * @since 2.6.0 bbPress (r5507) 2325 2327 * 2326 2328 * @param array $args See {@link bbp_get_reply_approve_link()} … … 2334 2336 * Return the approve link of the reply 2335 2337 * 2336 * @since bbPress (r5507)2338 * @since 2.6.0 bbPress (r5507) 2337 2339 * 2338 2340 * @param array $args This function supports these args: … … 2383 2385 * Output the row class of a reply 2384 2386 * 2385 * @since bbPress (r2678)2387 * @since 2.0.0 bbPress (r2678) 2386 2388 * 2387 2389 * @param int $reply_id Optional. Reply ID … … 2395 2397 * Return the row class of a reply 2396 2398 * 2397 * @since bbPress (r2678)2399 * @since 2.0.0 bbPress (r2678) 2398 2400 * 2399 2401 * @param int $reply_id Optional. Reply ID … … 2428 2430 * Output the topic pagination count 2429 2431 * 2430 * @since bbPress (r2519)2432 * @since 2.0.0 bbPress (r2519) 2431 2433 * 2432 2434 * @uses bbp_get_topic_pagination_count() To get the topic pagination count … … 2438 2440 * Return the topic pagination count 2439 2441 * 2440 * @since bbPress (r2519)2442 * @since 2.0.0 bbPress (r2519) 2441 2443 * 2442 2444 * @uses bbp_number_format() To format the number value … … 2501 2503 * Output topic pagination links 2502 2504 * 2503 * @since bbPress (r2519)2505 * @since 2.0.0 bbPress (r2519) 2504 2506 * 2505 2507 * @uses bbp_get_topic_pagination_links() To get the topic pagination links … … 2511 2513 * Return topic pagination links 2512 2514 * 2513 * @since bbPress (r2519)2515 * @since 2.0.0 bbPress (r2519) 2514 2516 * 2515 2517 * @uses apply_filters() Calls 'bbp_get_topic_pagination_links' with the … … 2532 2534 * Output the value of reply content field 2533 2535 * 2534 * @since bbPress (r31301)2536 * @since 2.0.0 bbPress (r3130) 2535 2537 * 2536 2538 * @uses bbp_get_form_reply_content() To get value of reply content field … … 2542 2544 * Return the value of reply content field 2543 2545 * 2544 * @since bbPress (r31301)2546 * @since 2.0.0 bbPress (r3130) 2545 2547 * 2546 2548 * @uses bbp_is_reply_edit() To check if it's the reply edit page … … 2569 2571 * Output the value of the reply to field 2570 2572 * 2571 * @since bbPress (r4944)2573 * @since 2.4.0 bbPress (r4944) 2572 2574 * 2573 2575 * @uses bbp_get_form_reply_to() To get value of the reply to field … … 2580 2582 * Return the value of reply to field 2581 2583 * 2582 * @since bbPress (r4944)2584 * @since 2.4.0 bbPress (r4944) 2583 2585 * 2584 2586 * @uses bbp_get_reply_id() To validate the reply to … … 2608 2610 * reply belongs to. 2609 2611 * 2610 * @since bbPress (r5387)2612 * @since 2.6.0 bbPress (r5387) 2611 2613 * 2612 2614 * @param int $reply_id … … 2618 2620 * Return a select box allowing to pick which topic/reply a reply belongs. 2619 2621 * 2620 * @since bbPress (r5387)2622 * @since 2.6.0 bbPress (r5387) 2621 2623 * 2622 2624 * @param int $reply_id … … 2692 2694 * Output checked value of reply log edit field 2693 2695 * 2694 * @since bbPress (r31301)2696 * @since 2.0.0 bbPress (r3130) 2695 2697 * 2696 2698 * @uses bbp_get_form_reply_log_edit() To get the reply log edit value … … 2702 2704 * Return checked value of reply log edit field 2703 2705 * 2704 * @since bbPress (r31301)2706 * @since 2.0.0 bbPress (r3130) 2705 2707 * 2706 2708 * @uses apply_filters() Calls 'bbp_get_form_reply_log_edit' with the … … 2728 2730 * Output the value of the reply edit reason 2729 2731 * 2730 * @since bbPress (r31301)2732 * @since 2.0.0 bbPress (r3130) 2731 2733 * 2732 2734 * @uses bbp_get_form_reply_edit_reason() To get the reply edit reason value … … 2738 2740 * Return the value of the reply edit reason 2739 2741 * 2740 * @since bbPress (r31301)2742 * @since 2.0.0 bbPress (r3130) 2741 2743 * 2742 2744 * @uses apply_filters() Calls 'bbp_get_form_reply_edit_reason' with the … … 2761 2763 * Output value reply status dropdown 2762 2764 * 2763 * @since bbPress (r5399)2765 * @since 2.6.0 bbPress (r5399) 2764 2766 * 2765 2767 * @param $args This function supports these arguments: … … 2779 2781 * within this function to check available reply statuses. 2780 2782 * 2781 * @since bbPress (r5399)2783 * @since 2.6.0 bbPress (r5399) 2782 2784 * 2783 2785 * @param $args This function supports these arguments: … … 2850 2852 * @see bbp_reply_form_fields() 2851 2853 * 2852 * @since bbPress (r5558) 2854 * @since 2.6.0 bbPress (r5558) 2855 * 2853 2856 * @return boolean True if is a post request with valid nonce 2854 2857 */
Note: See TracChangeset
for help on using the changeset viewer.