Changeset 43827
- Timestamp:
- 10/26/2018 01:23:29 AM (6 years ago)
- Location:
- branches/5.0/src
- Files:
-
- 18 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.0/src/wp-admin/includes/plugin.php
r43364 r43827 431 431 432 432 /** 433 * Checkwhether a plugin is active.433 * Determines whether a plugin is active. 434 434 * 435 435 * Only plugins installed in the plugins/ folder can be active. … … 437 437 * Plugins in the mu-plugins/ folder can't be "activated," so this function will 438 438 * return false for those plugins. 439 * 439 * 440 * For more information on this and similar theme functions, check out 441 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 442 * Conditional Tags} article in the Theme Developer Handbook. 443 * 440 444 * @since 2.5.0 441 445 * … … 448 452 449 453 /** 450 * Checkwhether the plugin is inactive.454 * Determines whether the plugin is inactive. 451 455 * 452 456 * Reverse of is_plugin_active(). Used as a callback. 453 * 457 * 458 * For more information on this and similar theme functions, check out 459 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 460 * Conditional Tags} article in the Theme Developer Handbook. 461 * 454 462 * @since 3.1.0 455 463 * @see is_plugin_active() … … 463 471 464 472 /** 465 * Checkwhether the plugin is active for the entire network.473 * Determines whether the plugin is active for the entire network. 466 474 * 467 475 * Only plugins installed in the plugins/ folder can be active. … … 469 477 * Plugins in the mu-plugins/ folder can't be "activated," so this function will 470 478 * return false for those plugins. 471 * 479 * 480 * For more information on this and similar theme functions, check out 481 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 482 * Conditional Tags} article in the Theme Developer Handbook. 483 * 472 484 * @since 3.0.0 473 485 * 474 486 * @param string $plugin Path to the main plugin file from plugins directory. 475 * @return bool True ,if active for the network, otherwise false.487 * @return bool True if active for the network, otherwise false. 476 488 */ 477 489 function is_plugin_active_for_network( $plugin ) { -
branches/5.0/src/wp-includes/admin-bar.php
r41796 r43827 986 986 987 987 /** 988 * Determine whether the admin bar should be showing. 989 * 988 * Determines whether the admin bar should be showing. 989 * 990 * For more information on this and similar theme functions, check out 991 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 992 * Conditional Tags} article in the Theme Developer Handbook. 993 * 990 994 * @since 3.1.0 991 995 * -
branches/5.0/src/wp-includes/author-template.php
r41376 r43827 504 504 505 505 /** 506 * D oes this site have more than one author506 * Determines whether this site has more than one author. 507 507 * 508 508 * Checks to see if more than one author has published posts. 509 * 509 * 510 * For more information on this and similar theme functions, check out 511 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 512 * Conditional Tags} article in the Theme Developer Handbook. 513 * 510 514 * @since 3.2.0 511 515 * -
branches/5.0/src/wp-includes/category-template.php
r42418 r43827 213 213 214 214 /** 215 * Check if the current post is within any of the given categories.215 * Checks if the current post is within any of the given categories. 216 216 * 217 217 * The given categories are checked against the post's categories' term_ids, names and slugs. … … 223 223 * Prior to v2.7, this function could only be used in the WordPress Loop. 224 224 * As of 2.7, the function can be used anywhere if it is provided a post ID or post object. 225 * 226 * For more information on this and similar theme functions, check out 227 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 228 * Conditional Tags} article in the Theme Developer Handbook. 225 229 * 226 230 * @since 1.2.0 … … 1368 1372 1369 1373 /** 1370 * Check if the current post has any of given tags.1374 * Checks if the current post has any of given tags. 1371 1375 * 1372 1376 * The given tags are checked against the post's tags' term_ids, names and slugs. … … 1377 1381 * Prior to v2.7, this function could only be used in the WordPress Loop. 1378 1382 * As of 2.7, the function can be used anywhere if it is provided a post ID or post object. 1383 * 1384 * For more information on this and similar theme functions, check out 1385 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 1386 * Conditional Tags} article in the Theme Developer Handbook. 1379 1387 * 1380 1388 * @since 2.6.0 -
branches/5.0/src/wp-includes/comment-template.php
r43532 r43827 1182 1182 1183 1183 /** 1184 * Whether the current post is open for comments. 1185 * 1184 * Determines whether the current post is open for comments. 1185 * 1186 * For more information on this and similar theme functions, check out 1187 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 1188 * Conditional Tags} article in the Theme Developer Handbook. 1189 * 1186 1190 * @since 1.5.0 1187 1191 * … … 1208 1212 1209 1213 /** 1210 * Whether the current post is open for pings. 1214 * Determines whether the current post is open for pings. 1215 * 1216 * For more information on this and similar theme functions, check out 1217 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 1218 * Conditional Tags} article in the Theme Developer Handbook. 1211 1219 * 1212 1220 * @since 1.5.0 -
branches/5.0/src/wp-includes/deprecated.php
r41787 r43827 2509 2509 2510 2510 /** 2511 * Is the current admin page generated by a plugin?2511 * Determines whether the current admin page is generated by a plugin. 2512 2512 * 2513 2513 * Use global $plugin_page and/or get_plugin_page_hookname() hooks. 2514 * 2514 * 2515 * For more information on this and similar theme functions, check out 2516 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 2517 * Conditional Tags} article in the Theme Developer Handbook. 2518 * 2515 2519 * @since 1.5.0 2516 2520 * @deprecated 3.1.0 … … 3714 3718 3715 3719 /** 3716 * Whether the current URL is within the comments popup window. 3717 * 3720 * Determines whether the current URL is within the comments popup window. 3721 * 3722 * For more information on this and similar theme functions, check out 3723 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 3724 * Conditional Tags} article in the Theme Developer Handbook. 3725 * 3718 3726 * @since 1.5.0 3719 3727 * @deprecated 4.5.0 -
branches/5.0/src/wp-includes/functions.php
r43703 r43827 655 655 656 656 /** 657 * Whether the publish date of the current post in the loop is different from the 658 * publish date of the previous post in the loop. 659 * 657 * Determines whether the publish date of the current post in the loop is different 658 * from the publish date of the previous post in the loop. 659 * 660 * For more information on this and similar theme functions, check out 661 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 662 * Conditional Tags} article in the Theme Developer Handbook. 663 * 660 664 * @since 0.71 661 665 * … … 1341 1345 1342 1346 /** 1343 * Testwhether WordPress is already installed.1347 * Determines whether WordPress is already installed. 1344 1348 * 1345 1349 * The cache will be checked first. If you have a cache plugin, which saves … … 1348 1352 * 1349 1353 * Checks for the 'siteurl' option for whether WordPress is installed. 1354 * 1355 * For more information on this and similar theme functions, check out 1356 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 1357 * Conditional Tags} article in the Theme Developer Handbook. 1350 1358 * 1351 1359 * @since 2.1.0 -
branches/5.0/src/wp-includes/functions.wp-scripts.php
r43825 r43827 330 330 331 331 /** 332 * Check whether a script has been added to the queue. 333 * 332 * Determines whether a script has been added to the queue. 333 * 334 * For more information on this and similar theme functions, check out 335 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 336 * Conditional Tags} article in the Theme Developer Handbook. 337 * 334 338 * @since 2.8.0 335 339 * @since 3.5.0 'enqueued' added as an alias of the 'queue' list. -
branches/5.0/src/wp-includes/l10n.php
r43825 r43827 1386 1386 1387 1387 /** 1388 * Checks if current locale is RTL. 1388 * Determines whether the current locale is right-to-left (RTL). 1389 * 1390 * For more information on this and similar theme functions, check out 1391 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 1392 * Conditional Tags} article in the Theme Developer Handbook. 1389 1393 * 1390 1394 * @since 3.0.0 -
branches/5.0/src/wp-includes/load.php
r43730 r43827 702 702 703 703 /** 704 * Whether the current request is for an administrative interface page.704 * Determines whether the current request is for an administrative interface page. 705 705 * 706 706 * Does not check if the user is an administrator; current_user_can() 707 707 * for checking roles and capabilities. 708 * 709 * For more information on this and similar theme functions, check out 710 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 711 * Conditional Tags} article in the Theme Developer Handbook. 708 712 * 709 713 * @since 1.5.1 -
branches/5.0/src/wp-includes/pluggable.php
r43349 r43827 976 976 if ( !function_exists('is_user_logged_in') ) : 977 977 /** 978 * Checks if the current visitor is a logged in user. 978 * Determines whether the current visitor is a logged in user. 979 * 980 * For more information on this and similar theme functions, check out 981 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 982 * Conditional Tags} article in the Theme Developer Handbook. 979 983 * 980 984 * @since 2.0.0 -
branches/5.0/src/wp-includes/post-template.php
r43790 r43827 399 399 400 400 /** 401 * Whether the post has a custom excerpt. 401 * Determines whether the post has a custom excerpt. 402 * 403 * For more information on this and similar theme functions, check out 404 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 405 * Conditional Tags} article in the Theme Developer Handbook. 402 406 * 403 407 * @since 2.3.0 … … 1631 1635 1632 1636 /** 1633 * Whether currently in a page template.1637 * Determines whether currently in a page template. 1634 1638 * 1635 1639 * This template tag allows you to determine if you are in a page template. 1636 1640 * You can optionally provide a template name or array of template names 1637 1641 * and then the check will be specific to that template. 1638 * 1642 * 1643 * For more information on this and similar theme functions, check out 1644 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 1645 * Conditional Tags} article in the Theme Developer Handbook. 1646 * 1639 1647 * @since 2.5.0 1640 1648 * @since 4.2.0 The `$template` parameter was changed to also accept an array of page templates. -
branches/5.0/src/wp-includes/post-thumbnail-template.php
r41267 r43827 11 11 12 12 /** 13 * Check if post has an image attached. 13 * Determines whether a post has an image attached. 14 * 15 * For more information on this and similar theme functions, check out 16 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 17 * Conditional Tags} article in the Theme Developer Handbook. 14 18 * 15 19 * @since 2.9.0 -
branches/5.0/src/wp-includes/post.php
r43819 r43827 1000 1000 1001 1001 /** 1002 * Check if a post type is registered. 1002 * Determines whether a post type is registered. 1003 * 1004 * For more information on this and similar theme functions, check out 1005 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 1006 * Conditional Tags} article in the Theme Developer Handbook. 1003 1007 * 1004 1008 * @since 3.0.0 … … 2019 2023 2020 2024 /** 2021 * Check ifpost is sticky.2025 * Determines whether a post is sticky. 2022 2026 * 2023 2027 * Sticky posts should remain at the top of The Loop. If the post ID is not 2024 2028 * given, then The Loop ID for the current post will be used. 2025 * 2029 * 2030 * For more information on this and similar theme functions, check out 2031 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 2032 * Conditional Tags} article in the Theme Developer Handbook. 2033 * 2026 2034 * @since 2.7.0 2027 2035 * … … 4991 4999 4992 5000 /** 4993 * Check if the attachment URI is local one and is really an attachment. 4994 * 5001 * Determines whether an attachment URI is local and really an attachment. 5002 * 5003 * For more information on this and similar theme functions, check out 5004 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 5005 * Conditional Tags} article in the Theme Developer Handbook. 5006 * 4995 5007 * @since 2.0.0 4996 5008 * … … 5488 5500 5489 5501 /** 5490 * Checks if the attachment is an image. 5502 * Determines whether an attachment is an image. 5503 * 5504 * For more information on this and similar theme functions, check out 5505 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 5506 * Conditional Tags} article in the Theme Developer Handbook. 5491 5507 * 5492 5508 * @since 2.1.0 -
branches/5.0/src/wp-includes/query.php
r43026 r43827 137 137 138 138 /** 139 * Is the query for an existing archive page?139 * Determines whether the query is for an existing archive page. 140 140 * 141 141 * Month, Year, Category, Author, Post Type archive... 142 * 142 * 143 * For more information on this and similar theme functions, check out 144 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 145 * Conditional Tags} article in the Theme Developer Handbook. 146 * 143 147 * @since 1.5.0 144 148 * … … 159 163 160 164 /** 161 * Is the query for an existing post type archive page? 162 * 165 * Determines whether the query is for an existing post type archive page. 166 * 167 * For more information on this and similar theme functions, check out 168 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 169 * Conditional Tags} article in the Theme Developer Handbook. 170 * 163 171 * @since 3.1.0 164 172 * … … 180 188 181 189 /** 182 * Is the query for an existing attachment page? 183 * 190 * Determines whether the query is for an existing attachment page. 191 * 192 * For more information on this and similar theme functions, check out 193 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 194 * Conditional Tags} article in the Theme Developer Handbook. 195 * 184 196 * @since 2.0.0 185 197 * … … 201 213 202 214 /** 203 * Is the query for an existing author archive page?215 * Determines whether the query is for an existing author archive page. 204 216 * 205 217 * If the $author parameter is specified, this function will additionally 206 218 * check if the query is for one of the authors specified. 207 * 219 * 220 * For more information on this and similar theme functions, check out 221 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 222 * Conditional Tags} article in the Theme Developer Handbook. 223 * 208 224 * @since 1.5.0 209 225 * … … 225 241 226 242 /** 227 * Is the query for an existing category archive page?243 * Determines whether the query is for an existing category archive page. 228 244 * 229 245 * If the $category parameter is specified, this function will additionally 230 246 * check if the query is for one of the categories specified. 231 * 247 * 248 * For more information on this and similar theme functions, check out 249 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 250 * Conditional Tags} article in the Theme Developer Handbook. 251 * 232 252 * @since 1.5.0 233 253 * … … 249 269 250 270 /** 251 * Is the query for an existing tag archive page?271 * Determines whether the query is for an existing tag archive page. 252 272 * 253 273 * If the $tag parameter is specified, this function will additionally 254 274 * check if the query is for one of the tags specified. 275 * 276 * For more information on this and similar theme functions, check out 277 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 278 * Conditional Tags} article in the Theme Developer Handbook. 255 279 * 256 280 * @since 2.3.0 … … 273 297 274 298 /** 275 * Is the query for an existing custom taxonomy archive page?299 * Determines whether the query is for an existing custom taxonomy archive page. 276 300 * 277 301 * If the $taxonomy parameter is specified, this function will additionally … … 281 305 * this function will additionally check if the query is for one of the terms 282 306 * specified. 307 * 308 * For more information on this and similar theme functions, check out 309 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 310 * Conditional Tags} article in the Theme Developer Handbook. 283 311 * 284 312 * @since 2.5.0 … … 302 330 303 331 /** 304 * Is the query for an existing date archive? 305 * 332 * Determines whether the query is for an existing date archive. 333 * 334 * For more information on this and similar theme functions, check out 335 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 336 * Conditional Tags} article in the Theme Developer Handbook. 337 * 306 338 * @since 1.5.0 307 339 * … … 322 354 323 355 /** 324 * Is the query for an existing day archive? 356 * Determines whether the query is for an existing day archive. 357 * 358 * For more information on this and similar theme functions, check out 359 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 360 * Conditional Tags} article in the Theme Developer Handbook. 325 361 * 326 362 * @since 1.5.0 … … 342 378 343 379 /** 344 * Is the query for a feed? 345 * 380 * Determines whether the query is for a feed. 381 * 382 * For more information on this and similar theme functions, check out 383 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 384 * Conditional Tags} article in the Theme Developer Handbook. 385 * 346 386 * @since 1.5.0 347 387 * … … 383 423 384 424 /** 385 * Is the query for the front page of the site?425 * Determines whether the query is for the front page of the site. 386 426 * 387 427 * This is for what is displayed at your site's main URL. … … 393 433 * 394 434 * Otherwise the same as @see is_home() 395 * 435 * 436 * For more information on this and similar theme functions, check out 437 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 438 * Conditional Tags} article in the Theme Developer Handbook. 439 * 396 440 * @since 2.5.0 397 441 * … … 412 456 413 457 /** 414 * Determines ifthe query is for the blog homepage.458 * Determines whether the query is for the blog homepage. 415 459 * 416 460 * The blog homepage is the page that shows the time-based blog content of the site. … … 421 465 * If a static page is set for the front page of the site, this function will return true only 422 466 * on the page you set as the "Posts page". 423 * 467 * 468 * For more information on this and similar theme functions, check out 469 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 470 * Conditional Tags} article in the Theme Developer Handbook. 471 * 424 472 * @since 1.5.0 425 473 * … … 441 489 442 490 /** 443 * Is the query for an existing month archive? 444 * 491 * Determines whether the query is for an existing month archive. 492 * 493 * For more information on this and similar theme functions, check out 494 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 495 * Conditional Tags} article in the Theme Developer Handbook. 496 * 445 497 * @since 1.5.0 446 498 * … … 461 513 462 514 /** 463 * Is the query for an existing single page?515 * Determines whether the query is for an existing single page. 464 516 * 465 517 * If the $page parameter is specified, this function will additionally 466 518 * check if the query is for one of the pages specified. 467 * 519 * 520 * For more information on this and similar theme functions, check out 521 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 522 * Conditional Tags} article in the Theme Developer Handbook. 523 * 468 524 * @see is_single() 469 525 * @see is_singular() … … 488 544 489 545 /** 490 * Is the query for paged result and not for the first page? 491 * 546 * Determines whether the query is for paged results and not for the first page. 547 * 548 * For more information on this and similar theme functions, check out 549 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 550 * Conditional Tags} article in the Theme Developer Handbook. 551 * 492 552 * @since 1.5.0 493 553 * … … 508 568 509 569 /** 510 * Is the query for a post or page preview? 511 * 570 * Determines whether the query is for a post or page preview. 571 * 572 * For more information on this and similar theme functions, check out 573 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 574 * Conditional Tags} article in the Theme Developer Handbook. 575 * 512 576 * @since 2.0.0 513 577 * … … 548 612 549 613 /** 550 * Is the query for a search? 551 * 614 * Determines whether the query is for a search. 615 * 616 * For more information on this and similar theme functions, check out 617 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 618 * Conditional Tags} article in the Theme Developer Handbook. 619 * 552 620 * @since 1.5.0 553 621 * … … 568 636 569 637 /** 570 * Is the query for an existing single post?638 * Determines whether the query is for an existing single post. 571 639 * 572 640 * Works for any post type, except attachments and pages … … 574 642 * If the $post parameter is specified, this function will additionally 575 643 * check if the query is for one of the Posts specified. 576 * 644 * 645 * For more information on this and similar theme functions, check out 646 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 647 * Conditional Tags} article in the Theme Developer Handbook. 648 * 577 649 * @see is_page() 578 650 * @see is_singular() … … 597 669 598 670 /** 599 * Is the query for an existing single post of any post type (post, attachment, page,600 * custom post types)?671 * Determines whether the query is for an existing single post of any post type 672 * (post, attachment, page, custom post types). 601 673 * 602 674 * If the $post_types parameter is specified, this function will additionally 603 675 * check if the query is for one of the Posts Types specified. 604 * 676 * 677 * For more information on this and similar theme functions, check out 678 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 679 * Conditional Tags} article in the Theme Developer Handbook. 680 * 605 681 * @see is_page() 606 682 * @see is_single() … … 625 701 626 702 /** 627 * Is the query for a specific time? 703 * Determines whether the query is for a specific time. 704 * 705 * For more information on this and similar theme functions, check out 706 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 707 * Conditional Tags} article in the Theme Developer Handbook. 628 708 * 629 709 * @since 1.5.0 … … 645 725 646 726 /** 647 * Is the query for a trackback endpoint call? 727 * Determines whether the query is for a trackback endpoint call. 728 * 729 * For more information on this and similar theme functions, check out 730 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 731 * Conditional Tags} article in the Theme Developer Handbook. 648 732 * 649 733 * @since 1.5.0 … … 665 749 666 750 /** 667 * Is the query for an existing year archive? 751 * Determines whether the query is for an existing year archive. 752 * 753 * For more information on this and similar theme functions, check out 754 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 755 * Conditional Tags} article in the Theme Developer Handbook. 668 756 * 669 757 * @since 1.5.0 … … 685 773 686 774 /** 687 * Is the query a 404 (returns no results)? 688 * 775 * Determines whether the query has resulted in a 404 (returns no results). 776 * 777 * For more information on this and similar theme functions, check out 778 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 779 * Conditional Tags} article in the Theme Developer Handbook. 780 * 689 781 * @since 1.5.0 690 782 * … … 725 817 726 818 /** 727 * Is the query the main query? 728 * 819 * Determines whether the query is the main query. 820 * 821 * For more information on this and similar theme functions, check out 822 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 823 * Conditional Tags} article in the Theme Developer Handbook. 824 * 729 825 * @since 3.3.0 730 826 * … … 769 865 770 866 /** 771 * Whether the caller is in the Loop. 867 * Determines whether the caller is in the Loop. 868 * 869 * For more information on this and similar theme functions, check out 870 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 871 * Conditional Tags} article in the Theme Developer Handbook. 772 872 * 773 873 * @since 2.0.0 -
branches/5.0/src/wp-includes/taxonomy.php
r43729 r43827 243 243 244 244 /** 245 * Checks thatthe taxonomy name exists.245 * Determines whether the taxonomy name exists. 246 246 * 247 247 * Formerly is_taxonomy(), introduced in 2.3.0. 248 * 249 * For more information on this and similar theme functions, check out 250 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 251 * Conditional Tags} article in the Theme Developer Handbook. 248 252 * 249 253 * @since 3.0.0 … … 261 265 262 266 /** 263 * Whether the taxonomy object is hierarchical.267 * Determines whether the taxonomy object is hierarchical. 264 268 * 265 269 * Checks to make sure that the taxonomy is an object first. Then Gets the … … 267 271 * 268 272 * A false return value might also mean that the taxonomy does not exist. 273 * 274 * For more information on this and similar theme functions, check out 275 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 276 * Conditional Tags} article in the Theme Developer Handbook. 269 277 * 270 278 * @since 2.3.0 … … 1266 1274 1267 1275 /** 1268 * Check if Term exists.1276 * Determines whether a term exists. 1269 1277 * 1270 1278 * Formerly is_term(), introduced in 2.3.0. 1279 * 1280 * For more information on this and similar theme functions, check out 1281 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 1282 * Conditional Tags} article in the Theme Developer Handbook. 1271 1283 * 1272 1284 * @since 3.0.0 -
branches/5.0/src/wp-includes/user.php
r43488 r43827 1315 1315 1316 1316 /** 1317 * Checks whether the given username exists. 1317 * Determines whether the given username exists. 1318 * 1319 * For more information on this and similar theme functions, check out 1320 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 1321 * Conditional Tags} article in the Theme Developer Handbook. 1318 1322 * 1319 1323 * @since 2.0.0 … … 1341 1345 1342 1346 /** 1343 * Checks whether the given email exists. 1347 * Determines whether the given email exists. 1348 * 1349 * For more information on this and similar theme functions, check out 1350 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 1351 * Conditional Tags} article in the Theme Developer Handbook. 1344 1352 * 1345 1353 * @since 2.1.0 -
branches/5.0/src/wp-includes/widgets.php
r43302 r43827 776 776 777 777 /** 778 * Whetherwidget is displayed on the front end.778 * Determines whether a given widget is displayed on the front end. 779 779 * 780 780 * Either $callback or $id_base can be used … … 787 787 * NOTE: $widget_id and $id_base are the same for single widgets. To be effective 788 788 * this function has to run after widgets have initialized, at action {@see 'init'} or later. 789 * 789 * 790 * For more information on this and similar theme functions, check out 791 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 792 * Conditional Tags} article in the Theme Developer Handbook. 793 * 790 794 * @since 2.2.0 791 795 * … … 823 827 824 828 /** 825 * Whether the dynamic sidebar is enabled and used by theme. 826 * 829 * Determines whether the dynamic sidebar is enabled and used by the theme. 830 * 831 * For more information on this and similar theme functions, check out 832 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 833 * Conditional Tags} article in the Theme Developer Handbook. 834 * 827 835 * @since 2.2.0 828 836 * … … 846 854 847 855 /** 848 * Whether a sidebar is in use. 849 * 856 * Determines whether a sidebar is in use. 857 * 858 * For more information on this and similar theme functions, check out 859 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 860 * Conditional Tags} article in the Theme Developer Handbook. 861 * 850 862 * @since 2.8.0 851 863 *
Note: See TracChangeset
for help on using the changeset viewer.