Changeset 5951 for trunk/src/includes/forums/template.php
- Timestamp:
- 10/28/2015 04:07:50 AM (10 years ago)
- File:
-
- 1 edited
-
trunk/src/includes/forums/template.php (modified) (117 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/forums/template.php
r5842 r5951 16 16 * Output the unique id of the custom post type for forums 17 17 * 18 * @since bbPress (r2857)18 * @since 2.0.0 bbPress (r2857) 19 19 * 20 20 * @uses bbp_get_forum_post_type() To get the forum post type … … 26 26 * Return the unique id of the custom post type for forums 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 … … 40 40 * Return array of labels used by the forum post type 41 41 * 42 * @since bbPress (r5129)42 * @since 2.5.0 bbPress (r5129) 43 43 * 44 44 * @return array … … 67 67 * Return array of forum post type rewrite settings 68 68 * 69 * @since bbPress (r5129)69 * @since 2.5.0 bbPress (r5129) 70 70 * 71 71 * @return array … … 81 81 * Return array of features the forum post type supports 82 82 * 83 * @since bbPress (r5129)83 * @since 2.5.0 bbPress (r5129) 84 84 * 85 85 * @return array … … 100 100 * WordPress makes this easy for us. 101 101 * 102 * @since bbPress (r2464)102 * @since 2.0.0 bbPress (r2464) 103 103 * 104 104 * @param array $args All the arguments supported by {@link WP_Query} … … 150 150 * Whether there are more forums available in the loop 151 151 * 152 * @since bbPress (r2464)152 * @since 2.0.0 bbPress (r2464) 153 153 * 154 154 * @uses bbPress:forum_query::have_posts() To check if there are more forums … … 172 172 * Loads up the current forum in the loop 173 173 * 174 * @since bbPress (r2464)174 * @since 2.0.0 bbPress (r2464) 175 175 * 176 176 * @uses bbPress:forum_query::the_post() To get the current forum … … 186 186 * Output forum id 187 187 * 188 * @since bbPress (r2464)188 * @since 2.0.0 bbPress (r2464) 189 189 * 190 190 * @param $forum_id Optional. Used to check emptiness … … 197 197 * Return the forum id 198 198 * 199 * @since bbPress (r2464)199 * @since 2.0.0 bbPress (r2464) 200 200 * 201 201 * @param $forum_id Optional. Used to check emptiness … … 252 252 * Gets a forum 253 253 * 254 * @since bbPress (r2787)254 * @since 2.0.0 bbPress (r2787) 255 255 * 256 256 * @param int|object $forum forum id or forum object … … 300 300 * Output the link to the forum 301 301 * 302 * @since bbPress (r2464)302 * @since 2.0.0 bbPress (r2464) 303 303 * 304 304 * @param int $forum_id Optional. Forum id … … 313 313 * Return the link to the forum 314 314 * 315 * @since bbPress (r2464)315 * @since 2.0.0 bbPress (r2464) 316 316 * 317 317 * @param int $forum_id Optional. Forum id … … 342 342 * Output the title of the forum 343 343 * 344 * @since bbPress (r2464)344 * @since 2.0.0 bbPress (r2464) 345 345 * 346 346 * @param int $forum_id Optional. Forum id … … 353 353 * Return the title of the forum 354 354 * 355 * @since bbPress (r2464)355 * @since 2.0.0 bbPress (r2464) 356 356 * 357 357 * @param int $forum_id Optional. Forum id … … 371 371 * Output the forum archive title 372 372 * 373 * @since bbPress (r3249)373 * @since 2.0.0 bbPress (r3249) 374 374 * 375 375 * @param string $title Default text to use as title … … 381 381 * Return the forum archive title 382 382 * 383 * @since bbPress (r3249)383 * @since 2.0.0 bbPress (r3249) 384 384 * 385 385 * @param string $title Default text to use as title … … 417 417 * Output the content of the forum 418 418 * 419 * @since bbPress (r2780)419 * @since 2.0.0 bbPress (r2780) 420 420 * 421 421 * @param int $forum_id Optional. Topic id … … 428 428 * Return the content of the forum 429 429 * 430 * @since bbPress (r2780)430 * @since 2.0.0 bbPress (r2780) 431 431 * 432 432 * @param int $forum_id Optional. Topic id … … 455 455 * Allow forum rows to have adminstrative actions 456 456 * 457 * @since bbPress (r3653)457 * @since 2.1.0 bbPress (r3653) 458 458 * 459 459 * @uses do_action() … … 467 467 * Output value of forum mods field 468 468 * 469 * @since bbPress (r5837) 469 * @since 2.6.0 bbPress (r5837) 470 * 470 471 * @uses bbp_get_form_forum_mods() To get the value of forum mods field 471 472 */ … … 476 477 * Return value of forum mods field 477 478 * 478 * @since bbPress (r5837)479 * @since 2.6.0 bbPress (r5837) 479 480 * 480 481 * @uses bbp_is_forum_edit() To check if it's the forum edit page … … 511 512 * Output the forums last active ID 512 513 * 513 * @since bbPress (r2860)514 * @since 2.0.0 bbPress (r2860) 514 515 * 515 516 * @uses bbp_get_forum_last_active_id() To get the forum's last active id … … 522 523 * Return the forums last active ID 523 524 * 524 * @since bbPress (r2860)525 * @since 2.0.0 bbPress (r2860) 525 526 * 526 527 * @param int $forum_id Optional. Forum id … … 541 542 * Output the forums last update date/time (aka freshness) 542 543 * 543 * @since bbPress (r2464)544 * @since 2.0.0 bbPress (r2464) 544 545 * 545 546 * @uses bbp_get_forum_last_active_time() To get the forum freshness … … 552 553 * Return the forums last update date/time (aka freshness) 553 554 * 554 * @since bbPress (r2464)555 * @since 2.0.0 bbPress (r2464) 555 556 * 556 557 * @param int $forum_id Optional. Forum id … … 596 597 * Outputs a complete link with attributes and content. 597 598 * 598 * @since bbPress (r2625)599 * @since 2.0.0 bbPress (r2625) 599 600 * 600 601 * @param int $forum_id Optional. Forum id … … 609 610 * Returns a complete link with attributes and content. 610 611 * 611 * @since bbPress (r2625)612 * @since 2.0.0 bbPress (r2625) 612 613 * 613 614 * @param int $forum_id Optional. Forum id … … 663 664 * Output parent ID of a forum, if exists 664 665 * 665 * @since bbPress (r3675)666 * @since 2.1.0 bbPress (r3675) 666 667 * 667 668 * @param int $forum_id Forum ID … … 674 675 * Return ID of forum parent, if exists 675 676 * 676 * @since bbPress (r3675)677 * @since 2.1.0 bbPress (r3675) 677 678 * 678 679 * @param int $forum_id Optional. Forum id … … 692 693 * Return array of parent forums 693 694 * 694 * @since bbPress (r2625)695 * @since 2.0.0 bbPress (r2625) 695 696 * 696 697 * @param int $forum_id Optional. Forum id … … 719 720 * Return subforums of given forum 720 721 * 721 * @since bbPress (r2747)722 * @since 2.0.0 bbPress (r2747) 722 723 * 723 724 * @param array $args All the arguments supported by {@link WP_Query} … … 865 866 * Output the forum subscription link 866 867 * 867 * @since bbPress (r5156)868 * @since 2.5.0 bbPress (r5156) 868 869 * 869 870 * @uses bbp_get_forum_subscription_link() … … 878 879 * A custom wrapper for bbp_get_user_subscribe_link() 879 880 * 880 * @since bbPress (r5156)881 * @since 2.5.0 bbPress (r5156) 881 882 * 882 883 * @uses bbp_parse_args() … … 913 914 * Output the forum's last topic id 914 915 * 915 * @since bbPress (r2464)916 * @since 2.0.0 bbPress (r2464) 916 917 * 917 918 * @uses bbp_get_forum_last_topic_id() To get the forum's last topic id … … 924 925 * Return the forum's last topic id 925 926 * 926 * @since bbPress (r2464)927 * @since 2.0.0 bbPress (r2464) 927 928 * 928 929 * @param int $forum_id Optional. Forum id … … 943 944 * Output the title of the last topic inside a forum 944 945 * 945 * @since bbPress (r2625)946 * @since 2.0.0 bbPress (r2625) 946 947 * 947 948 * @param int $forum_id Optional. Forum id … … 954 955 * Return the title of the last topic inside a forum 955 956 * 956 * @since bbPress (r2625)957 * @since 2.0.0 bbPress (r2625) 957 958 * 958 959 * @param int $forum_id Optional. Forum id … … 975 976 * Output the link to the last topic in a forum 976 977 * 977 * @since bbPress (r2464)978 * @since 2.0.0 bbPress (r2464) 978 979 * 979 980 * @param int $forum_id Optional. Forum id … … 987 988 * Return the link to the last topic in a forum 988 989 * 989 * @since bbPress (r2464)990 * @since 2.0.0 bbPress (r2464) 990 991 * 991 992 * @param int $forum_id Optional. Forum id … … 1008 1009 * Return the author ID of the last topic of a forum 1009 1010 * 1010 * @since bbPress (r2625)1011 * @since 2.0.0 bbPress (r2625) 1011 1012 * 1012 1013 * @param int $forum_id Optional. Forum id … … 1029 1030 * Output link to author of last topic of forum 1030 1031 * 1031 * @since bbPress (r2625)1032 * @since 2.0.0 bbPress (r2625) 1032 1033 * 1033 1034 * @param int $forum_id Optional. Forum id … … 1041 1042 * Return link to author of last topic of forum 1042 1043 * 1043 * @since bbPress (r2625)1044 * @since 2.0.0 bbPress (r2625) 1044 1045 * 1045 1046 * @param int $forum_id Optional. Forum id … … 1065 1066 * Output the forums last reply id 1066 1067 * 1067 * @since bbPress (r2464)1068 * @since 2.0.0 bbPress (r2464) 1068 1069 * 1069 1070 * @uses bbp_get_forum_last_reply_id() To get the forum's last reply id … … 1076 1077 * Return the forums last reply id 1077 1078 * 1078 * @since bbPress (r2464)1079 * @since 2.0.0 bbPress (r2464) 1079 1080 * 1080 1081 * @param int $forum_id Optional. Forum id … … 1124 1125 * Output the link to the last reply in a forum 1125 1126 * 1126 * @since bbPress (r2464)1127 * @since 2.0.0 bbPress (r2464) 1127 1128 * 1128 1129 * @param int $forum_id Optional. Forum id … … 1135 1136 * Return the link to the last reply in a forum 1136 1137 * 1137 * @since bbPress (r2464)1138 * @since 2.0.0 bbPress (r2464) 1138 1139 * 1139 1140 * @param int $forum_id Optional. Forum id … … 1156 1157 * Output the url to the last reply in a forum 1157 1158 * 1158 * @since bbPress (r2683)1159 * @since 2.0.0 bbPress (r2683) 1159 1160 * 1160 1161 * @param int $forum_id Optional. Forum id … … 1167 1168 * Return the url to the last reply in a forum 1168 1169 * 1169 * @since bbPress (r2683)1170 * @since 2.0.0 bbPress (r2683) 1170 1171 * 1171 1172 * @param int $forum_id Optional. Forum id … … 1204 1205 * Output author ID of last reply of forum 1205 1206 * 1206 * @since bbPress (r2625)1207 * @since 2.0.0 bbPress (r2625) 1207 1208 * 1208 1209 * @param int $forum_id Optional. Forum id … … 1216 1217 * Return author ID of last reply of forum 1217 1218 * 1218 * @since bbPress (r2625)1219 * @since 2.0.0 bbPress (r2625) 1219 1220 * 1220 1221 * @param int $forum_id Optional. Forum id … … 1238 1239 * Output link to author of last reply of forum 1239 1240 * 1240 * @since bbPress (r2625)1241 * @since 2.0.0 bbPress (r2625) 1241 1242 * 1242 1243 * @param int $forum_id Optional. Forum id … … 1250 1251 * Return link to author of last reply of forum 1251 1252 * 1252 * @since bbPress (r2625)1253 * @since 2.0.0 bbPress (r2625) 1253 1254 * 1254 1255 * @param int $forum_id Optional. Forum id … … 1275 1276 * Output the topics link of the forum 1276 1277 * 1277 * @since bbPress (r2883)1278 * @since 2.0.0 bbPress (r2883) 1278 1279 * 1279 1280 * @param int $forum_id Optional. Topic id … … 1287 1288 * Return the topics link of the forum 1288 1289 * 1289 * @since bbPress (r2883)1290 * @since 2.0.0 bbPress (r2883) 1290 1291 * 1291 1292 * @param int $forum_id Optional. Topic id … … 1339 1340 * Output total sub-forum count of a forum 1340 1341 * 1341 * @since bbPress (r2464)1342 * @since 2.0.0 bbPress (r2464) 1342 1343 * 1343 1344 * @param int $forum_id Optional. Forum id to check … … 1351 1352 * Return total subforum count of a forum 1352 1353 * 1353 * @since bbPress (r2464)1354 * @since 2.0.0 bbPress (r2464) 1354 1355 * 1355 1356 * @param int $forum_id Optional. Forum id … … 1372 1373 * Output total topic count of a forum 1373 1374 * 1374 * @since bbPress (r2464)1375 * @since 2.0.0 bbPress (r2464) 1375 1376 * 1376 1377 * @param int $forum_id Optional. Forum id … … 1385 1386 * Return total topic count of a forum 1386 1387 * 1387 * @since bbPress (r2464)1388 * @since 2.0.0 bbPress (r2464) 1388 1389 * 1389 1390 * @param int $forum_id Optional. Forum id … … 1409 1410 * Output total reply count of a forum 1410 1411 * 1411 * @since bbPress (r2464)1412 * @since 2.0.0 bbPress (r2464) 1412 1413 * 1413 1414 * @param int $forum_id Optional. Forum id … … 1422 1423 * Return total post count of a forum 1423 1424 * 1424 * @since bbPress (r2464)1425 * @since 2.0.0 bbPress (r2464) 1425 1426 * 1426 1427 * @param int $forum_id Optional. Forum id … … 1446 1447 * Output total post count of a forum 1447 1448 * 1448 * @since bbPress (r2954)1449 * @since 2.0.0 bbPress (r2954) 1449 1450 * 1450 1451 * @param int $forum_id Optional. Forum id … … 1459 1460 * Return total post count of a forum 1460 1461 * 1461 * @since bbPress (r2954)1462 * @since 2.0.0 bbPress (r2954) 1462 1463 * 1463 1464 * @param int $forum_id Optional. Forum id … … 1486 1487 * and pending topics) 1487 1488 * 1488 * @since bbPress (r2883)1489 * @since 2.0.0 bbPress (r2883) 1489 1490 * 1490 1491 * @param int $forum_id Optional. Topic id … … 1499 1500 * spammed and pending topics) 1500 1501 * 1501 * @since bbPress (r2883)1502 * @since 2.0.0 bbPress (r2883) 1502 1503 * 1503 1504 * @param int $forum_id Optional. Topic id … … 1520 1521 * Output the status of the forum 1521 1522 * 1522 * @since bbPress (r2667)1523 * @since 2.0.0 bbPress (r2667) 1523 1524 * 1524 1525 * @param int $forum_id Optional. Forum id … … 1531 1532 * Return the status of the forum 1532 1533 * 1533 * @since bbPress (r2667)1534 * @since 2.0.0 bbPress (r2667) 1534 1535 * 1535 1536 * @param int $forum_id Optional. Forum id … … 1554 1555 * Output the visibility of the forum 1555 1556 * 1556 * @since bbPress (r2997)1557 * @since 2.0.0 bbPress (r2997) 1557 1558 * 1558 1559 * @param int $forum_id Optional. Forum id … … 1565 1566 * Return the visibility of the forum 1566 1567 * 1567 * @since bbPress (r2997)1568 * @since 2.0.0 bbPress (r2997) 1568 1569 * 1569 1570 * @param int $forum_id Optional. Forum id … … 1584 1585 * Output the type of the forum 1585 1586 * 1586 * @since bbPress (r3563)1587 * @since 2.1.0 bbPress (r3563) 1587 1588 * 1588 1589 * @param int $forum_id Optional. Forum id … … 1595 1596 * Return the type of forum (category/forum/etc...) 1596 1597 * 1597 * @since bbPress (r3563)1598 * @since 2.1.0 bbPress (r3563) 1598 1599 * 1599 1600 * @param int $forum_id Optional. Forum id … … 1615 1616 * Is the forum a category? 1616 1617 * 1617 * @since bbPress (r2746)1618 * @since 2.0.0 bbPress (r2746) 1618 1619 * 1619 1620 * @param int $forum_id Optional. Forum id … … 1632 1633 * Is the forum open? 1633 1634 * 1634 * @since bbPress (r2746)1635 * @since 2.0.0 bbPress (r2746) 1635 1636 * 1636 1637 * @param int $forum_id Optional. Forum id … … 1647 1648 * Is the forum closed? 1648 1649 * 1649 * @since bbPress (r2746)1650 * @since 2.0.0 bbPress (r2746) 1650 1651 * 1651 1652 * @param int $forum_id Optional. Forum id … … 1670 1671 * Check if the forum status is a specific one, also maybe checking ancestors 1671 1672 * 1672 * @since bbPress (r5499)1673 * @since 2.6.0 bbPress (r5499) 1673 1674 * 1674 1675 * @param bool $status_name The forum status name to check … … 1744 1745 * Is the forum public? 1745 1746 * 1746 * @since bbPress (r2997)1747 * @since 2.0.0 bbPress (r2997) 1747 1748 * 1748 1749 * @param int $forum_id Optional. Forum id … … 1766 1767 * Is the forum private? 1767 1768 * 1768 * @since bbPress (r2746)1769 * @since 2.0.0 bbPress (r2746) 1769 1770 * 1770 1771 * @param int $forum_id Optional. Forum id … … 1788 1789 * Is the forum hidden? 1789 1790 * 1790 * @since bbPress (r2997)1791 * @since 2.0.0 bbPress (r2997) 1791 1792 * 1792 1793 * @param int $forum_id Optional. Forum id … … 1811 1812 * Check the forum visibility ID 1812 1813 * 1813 * @since bbPress (r5499)1814 * @since 2.6.0 bbPress (r5499) 1814 1815 * 1815 1816 * @param int $forum_id Optional. Forum id … … 1888 1889 * Output the author ID of the forum 1889 1890 * 1890 * @since bbPress (r3675)1891 * @since 2.1.0 bbPress (r3675) 1891 1892 * 1892 1893 * @param int $forum_id Optional. Forum id … … 1899 1900 * Return the author ID of the forum 1900 1901 * 1901 * @since bbPress (r3675)1902 * @since 2.1.0 bbPress (r3675) 1902 1903 * 1903 1904 * @param int $forum_id Optional. Forum id … … 1918 1919 * Output the author of the forum 1919 1920 * 1920 * @since bbPress (r3675)1921 * @since 2.1.0 bbPress (r3675) 1921 1922 * 1922 1923 * @param int $forum_id Optional. Forum id … … 1929 1930 * Return the author of the forum 1930 1931 * 1931 * @since bbPress (r3675)1932 * @since 2.1.0 bbPress (r3675) 1932 1933 * 1933 1934 * @param int $forum_id Optional. Forum id … … 1950 1951 * Replace forum meta details for users that cannot view them. 1951 1952 * 1952 * @since bbPress (r3162)1953 * @since 2.0.0 bbPress (r3162) 1953 1954 * 1954 1955 * @param string $retval … … 1971 1972 * Replace forum author details for users that cannot view them. 1972 1973 * 1973 * @since bbPress (r3162)1974 * @since 2.0.0 bbPress (r3162) 1974 1975 * 1975 1976 * @param string $author_link … … 2031 2032 * Output the row class of a forum 2032 2033 * 2033 * @since bbPress (r2667)2034 * @since 2.0.0 bbPress (r2667) 2034 2035 * 2035 2036 * @param int $forum_id Optional. Forum ID. … … 2043 2044 * Return the row class of a forum 2044 2045 * 2045 * @since bbPress (r2667)2046 * @since 2.0.0 bbPress (r2667) 2046 2047 * 2047 2048 * @param int $forum_id Optional. Forum ID … … 2088 2089 * total replies, and last activity. 2089 2090 * 2090 * @since bbPress (r2860)2091 * @since 2.0.0 bbPress (r2860) 2091 2092 * 2092 2093 * @param array $args Arguments passed to alter output … … 2100 2101 * topics, total replies, and last activity. 2101 2102 * 2102 * @since bbPress (r2860)2103 * @since 2.0.0 bbPress (r2860) 2103 2104 * 2104 2105 * @param array $args This function supports these arguments: … … 2223 2224 * Output the unique id of the forum moderators taxonomy 2224 2225 * 2225 * @since bbPress (r5834)2226 * @since 2.6.0 bbPress (r5834) 2226 2227 * 2227 2228 * @uses bbp_get_forum_mod_tax_id() To get the forum modorator taxonomy ID … … 2233 2234 * Return the unique id of the forum moderators taxonomy 2234 2235 * 2235 * @since bbPress (r5834)2236 * @since 2.6.0 bbPress (r5834) 2236 2237 * 2237 2238 * @uses apply_filters() Calls 'bbp_get_forum_mod_tax_id' with the forum … … 2246 2247 * Return array of labels used by the forum-mod taxonomy 2247 2248 * 2248 * @since bbPress (r5834)2249 * @since 2.6.0 bbPress (r5834) 2249 2250 * 2250 2251 * @uses apply_filters() Calls 'bbp_get_forum_mod_tax_id' with the forum … … 2271 2272 * Output a the moderators of a forum 2272 2273 * 2273 * @since bbPress (r5834)2274 * @since 2.6.0 bbPress (r5834) 2274 2275 * 2275 2276 * @param int $forum_id Optional. Topic id … … 2283 2284 * Return the moderators of a forum 2284 2285 * 2285 * @since bbPress (r5834)2286 * @since 2.6.0 bbPress (r5834) 2286 2287 * 2287 2288 * @param int $forum_id Optional. Forum id … … 2351 2352 * Output the value of forum title field 2352 2353 * 2353 * @since bbPress (r3551)2354 * @since 2.1.0 bbPress (r3551) 2354 2355 * 2355 2356 * @uses bbp_get_form_forum_title() To get the value of forum title field … … 2361 2362 * Return the value of forum title field 2362 2363 * 2363 * @since bbPress (r3551)2364 * @since 2.1.0 bbPress (r3551) 2364 2365 * 2365 2366 * @uses bbp_is_forum_edit() To check if it's forum edit page … … 2388 2389 * Output the value of forum content field 2389 2390 * 2390 * @since bbPress (r3551)2391 * @since 2.1.0 bbPress (r3551) 2391 2392 * 2392 2393 * @uses bbp_get_form_forum_content() To get value of forum content field … … 2398 2399 * Return the value of forum content field 2399 2400 * 2400 * @since bbPress (r3551)2401 * @since 2.1.0 bbPress (r3551) 2401 2402 * 2402 2403 * @uses bbp_is_forum_edit() To check if it's the forum edit page … … 2425 2426 * Output value of forum parent 2426 2427 * 2427 * @since bbPress (r3551)2428 * @since 2.1.0 bbPress (r3551) 2428 2429 * 2429 2430 * @uses bbp_get_form_forum_parent() To get the topic's forum id … … 2435 2436 * Return value of forum parent 2436 2437 * 2437 * @since bbPress (r3551)2438 * @since 2.1.0 bbPress (r3551) 2438 2439 * 2439 2440 * @uses bbp_is_topic_edit() To check if it's the topic edit page … … 2463 2464 * Output value of forum type 2464 2465 * 2465 * @since bbPress (r3563)2466 * @since 2.1.0 bbPress (r3563) 2466 2467 * 2467 2468 * @uses bbp_get_form_forum_type() To get the topic's forum id … … 2473 2474 * Return value of forum type 2474 2475 * 2475 * @since bbPress (r3563)2476 * @since 2.1.0 bbPress (r3563) 2476 2477 * 2477 2478 * @uses bbp_is_topic_edit() To check if it's the topic edit page … … 2501 2502 * Output value of forum visibility 2502 2503 * 2503 * @since bbPress (r3563)2504 * @since 2.1.0 bbPress (r3563) 2504 2505 * 2505 2506 * @uses bbp_get_form_forum_visibility() To get the topic's forum id … … 2511 2512 * Return value of forum visibility 2512 2513 * 2513 * @since bbPress (r3563)2514 * @since 2.1.0 bbPress (r3563) 2514 2515 * 2515 2516 * @uses bbp_is_topic_edit() To check if it's the topic edit page … … 2539 2540 * Output checked value of forum subscription 2540 2541 * 2541 * @since bbPress (r5156)2542 * @since 2.5.0 bbPress (r5156) 2542 2543 * 2543 2544 * @uses bbp_get_form_forum_subscribed() To get the subscribed checkbox value … … 2549 2550 * Return checked value of forum subscription 2550 2551 * 2551 * @since bbPress (r5156)2552 * @since 2.5.0 bbPress (r5156) 2552 2553 * 2553 2554 * @uses bbp_is_forum_edit() To check if it's the forum edit page … … 2601 2602 * Output value forum type dropdown 2602 2603 * 2603 * @since bbPress (r3563)2604 * @since 2.1.0 bbPress (r3563) 2604 2605 * 2605 2606 * @param $args This function supports these arguments: … … 2616 2617 * Return the forum type dropdown 2617 2618 * 2618 * @since bbPress (r3563)2619 * @since 2.1.0 bbPress (r3563) 2619 2620 * 2620 2621 * @param $args This function supports these arguments: … … 2693 2694 * Output value forum status dropdown 2694 2695 * 2695 * @since bbPress (r3563)2696 * @since 2.1.0 bbPress (r3563) 2696 2697 * 2697 2698 * @param $args This function supports these arguments: … … 2708 2709 * Return the forum status dropdown 2709 2710 * 2710 * @since bbPress (r3563)2711 * @since 2.1.0 bbPress (r3563) 2711 2712 * 2712 2713 * @param $args This function supports these arguments: … … 2785 2786 * Output value forum visibility dropdown 2786 2787 * 2787 * @since bbPress (r3563)2788 * @since 2.1.0 bbPress (r3563) 2788 2789 * 2789 2790 * @param $args This function supports these arguments: … … 2800 2801 * Return the forum visibility dropdown 2801 2802 * 2802 * @since bbPress (r3563)2803 * @since 2.1.0 bbPress (r3563) 2803 2804 * 2804 2805 * @param $args This function supports these arguments: … … 2882 2883 * @see bbp_forum_form_fields() 2883 2884 * 2884 * @since bbPress (r5558) 2885 * @since 2.6.0 bbPress (r5558) 2886 * 2885 2887 * @return boolean True if is a post request with valid nonce 2886 2888 */ … … 2910 2912 * Output the link for the forum feed 2911 2913 * 2912 * @since bbPress (r3172)2914 * @since 2.0.0 bbPress (r3172) 2913 2915 * 2914 2916 * @param type $forum_id Optional. Forum ID. … … 2922 2924 * Retrieve the link for the forum feed 2923 2925 * 2924 * @since bbPress (r3172)2926 * @since 2.0.0 bbPress (r3172) 2925 2927 * 2926 2928 * @param int $forum_id Optional. Forum ID. … … 2972 2974 * Output the link for the forum replies feed 2973 2975 * 2974 * @since bbPress (r3172)2976 * @since 2.0.0 bbPress (r3172) 2975 2977 * 2976 2978 * @param type $forum_id Optional. Forum ID. … … 2984 2986 * Retrieve the link for the forum replies feed 2985 2987 * 2986 * @since bbPress (r3172)2988 * @since 2.0.0 bbPress (r3172) 2987 2989 * 2988 2990 * @param int $forum_id Optional. Forum ID.
Note: See TracChangeset
for help on using the changeset viewer.