Changeset 42710
- Timestamp:
- 02/13/2018 04:53:44 PM (7 years ago)
- Location:
- trunk/src
- Files:
-
- 18 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/plugin.php
r42394 r42710 458 458 459 459 /** 460 * Checkwhether a plugin is active.460 * Determines whether a plugin is active. 461 461 * 462 462 * Only plugins installed in the plugins/ folder can be active. … … 464 464 * Plugins in the mu-plugins/ folder can't be "activated," so this function will 465 465 * return false for those plugins. 466 * 466 * 467 * For more information on this and similar theme functions, check out 468 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 469 * Conditional Tags} article in the Theme Developer Handbook. 470 * 467 471 * @since 2.5.0 468 472 * … … 475 479 476 480 /** 477 * Checkwhether the plugin is inactive.481 * Determines whether the plugin is inactive. 478 482 * 479 483 * Reverse of is_plugin_active(). Used as a callback. 480 * 484 * 485 * For more information on this and similar theme functions, check out 486 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 487 * Conditional Tags} article in the Theme Developer Handbook. 488 * 481 489 * @since 3.1.0 482 490 * @see is_plugin_active() … … 490 498 491 499 /** 492 * Checkwhether the plugin is active for the entire network.500 * Determines whether the plugin is active for the entire network. 493 501 * 494 502 * Only plugins installed in the plugins/ folder can be active. … … 496 504 * Plugins in the mu-plugins/ folder can't be "activated," so this function will 497 505 * return false for those plugins. 498 * 506 * 507 * For more information on this and similar theme functions, check out 508 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 509 * Conditional Tags} article in the Theme Developer Handbook. 510 * 499 511 * @since 3.0.0 500 512 * 501 513 * @param string $plugin Path to the main plugin file from plugins directory. 502 * @return bool True ,if active for the network, otherwise false.514 * @return bool True if active for the network, otherwise false. 503 515 */ 504 516 function is_plugin_active_for_network( $plugin ) { -
trunk/src/wp-includes/admin-bar.php
r42343 r42710 1118 1118 1119 1119 /** 1120 * Determine whether the admin bar should be showing. 1121 * 1120 * Determines whether the admin bar should be showing. 1121 * 1122 * For more information on this and similar theme functions, check out 1123 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 1124 * Conditional Tags} article in the Theme Developer Handbook. 1125 * 1122 1126 * @since 3.1.0 1123 1127 * -
trunk/src/wp-includes/author-template.php
r42343 r42710 522 522 523 523 /** 524 * D oes this site have more than one author524 * Determines whether this site has more than one author. 525 525 * 526 526 * Checks to see if more than one author has published posts. 527 * 527 * 528 * For more information on this and similar theme functions, check out 529 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 530 * Conditional Tags} article in the Theme Developer Handbook. 531 * 528 532 * @since 3.2.0 529 533 * -
trunk/src/wp-includes/category-template.php
r42658 r42710 222 222 223 223 /** 224 * Check if the current post is within any of the given categories.224 * Checks if the current post is within any of the given categories. 225 225 * 226 226 * The given categories are checked against the post's categories' term_ids, names and slugs. … … 232 232 * Prior to v2.7, this function could only be used in the WordPress Loop. 233 233 * As of 2.7, the function can be used anywhere if it is provided a post ID or post object. 234 * 235 * For more information on this and similar theme functions, check out 236 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 237 * Conditional Tags} article in the Theme Developer Handbook. 234 238 * 235 239 * @since 1.2.0 … … 1407 1411 1408 1412 /** 1409 * Check if the current post has any of given tags.1413 * Checks if the current post has any of given tags. 1410 1414 * 1411 1415 * The given tags are checked against the post's tags' term_ids, names and slugs. … … 1416 1420 * Prior to v2.7, this function could only be used in the WordPress Loop. 1417 1421 * As of 2.7, the function can be used anywhere if it is provided a post ID or post object. 1422 * 1423 * For more information on this and similar theme functions, check out 1424 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 1425 * Conditional Tags} article in the Theme Developer Handbook. 1418 1426 * 1419 1427 * @since 2.6.0 -
trunk/src/wp-includes/comment-template.php
r42360 r42710 1202 1202 1203 1203 /** 1204 * Whether the current post is open for comments. 1205 * 1204 * Determines whether the current post is open for comments. 1205 * 1206 * For more information on this and similar theme functions, check out 1207 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 1208 * Conditional Tags} article in the Theme Developer Handbook. 1209 * 1206 1210 * @since 1.5.0 1207 1211 * … … 1228 1232 1229 1233 /** 1230 * Whether the current post is open for pings. 1234 * Determines whether the current post is open for pings. 1235 * 1236 * For more information on this and similar theme functions, check out 1237 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 1238 * Conditional Tags} article in the Theme Developer Handbook. 1231 1239 * 1232 1240 * @since 1.5.0 -
trunk/src/wp-includes/deprecated.php
r41787 r42710 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 -
trunk/src/wp-includes/functions.php
r42697 r42710 672 672 673 673 /** 674 * Whether the publish date of the current post in the loop is different from the 675 * publish date of the previous post in the loop. 676 * 674 * Determines whether the publish date of the current post in the loop is different 675 * from the publish date of the previous post in the loop. 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 * 677 681 * @since 0.71 678 682 * … … 1383 1387 1384 1388 /** 1385 * Testwhether WordPress is already installed.1389 * Determines whether WordPress is already installed. 1386 1390 * 1387 1391 * The cache will be checked first. If you have a cache plugin, which saves … … 1390 1394 * 1391 1395 * Checks for the 'siteurl' option for whether WordPress is installed. 1396 * 1397 * For more information on this and similar theme functions, check out 1398 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 1399 * Conditional Tags} article in the Theme Developer Handbook. 1392 1400 * 1393 1401 * @since 2.1.0 -
trunk/src/wp-includes/functions.wp-scripts.php
r42343 r42710 320 320 321 321 /** 322 * Check whether a script has been added to the queue. 323 * 322 * Determines whether a script has been added to the queue. 323 * 324 * For more information on this and similar theme functions, check out 325 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 326 * Conditional Tags} article in the Theme Developer Handbook. 327 * 324 328 * @since 2.8.0 325 329 * @since 3.5.0 'enqueued' added as an alias of the 'queue' list. -
trunk/src/wp-includes/l10n.php
r42399 r42710 1288 1288 1289 1289 /** 1290 * Checks if current locale is RTL. 1290 * Determines whether the current locale is right-to-left (RTL). 1291 * 1292 * For more information on this and similar theme functions, check out 1293 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 1294 * Conditional Tags} article in the Theme Developer Handbook. 1291 1295 * 1292 1296 * @since 3.0.0 -
trunk/src/wp-includes/load.php
r42701 r42710 758 758 759 759 /** 760 * Whether the current request is for an administrative interface page.760 * Determines whether the current request is for an administrative interface page. 761 761 * 762 762 * Does not check if the user is an administrator; current_user_can() 763 763 * for checking roles and capabilities. 764 * 765 * For more information on this and similar theme functions, check out 766 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 767 * Conditional Tags} article in the Theme Developer Handbook. 764 768 * 765 769 * @since 1.5.1 -
trunk/src/wp-includes/pluggable.php
r42647 r42710 982 982 if ( ! function_exists( 'is_user_logged_in' ) ) : 983 983 /** 984 * Checks if the current visitor is a logged in user. 985 * 984 * Determines whether the current visitor is a logged in user. 985 * 986 * For more information on this and similar theme functions, check out 987 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 988 * Conditional Tags} article in the Theme Developer Handbook. 989 * 986 990 * @since 2.0.0 987 991 * -
trunk/src/wp-includes/post-template.php
r42440 r42710 413 413 414 414 /** 415 * Whether the post has a custom excerpt. 415 * Determines whether the post has a custom excerpt. 416 * 417 * For more information on this and similar theme functions, check out 418 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 419 * Conditional Tags} article in the Theme Developer Handbook. 416 420 * 417 421 * @since 2.3.0 … … 1687 1691 1688 1692 /** 1689 * Whether currently in a page template.1693 * Determines whether currently in a page template. 1690 1694 * 1691 1695 * This template tag allows you to determine if you are in a page template. 1692 1696 * You can optionally provide a template name or array of template names 1693 1697 * and then the check will be specific to that template. 1694 * 1698 * 1699 * For more information on this and similar theme functions, check out 1700 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 1701 * Conditional Tags} article in the Theme Developer Handbook. 1702 * 1695 1703 * @since 2.5.0 1696 1704 * @since 4.2.0 The `$template` parameter was changed to also accept an array of page templates. -
trunk/src/wp-includes/post-thumbnail-template.php
r42343 r42710 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 -
trunk/src/wp-includes/post.php
r42678 r42710 972 972 973 973 /** 974 * Check if a post type is registered. 974 * Determines whether a post type is registered. 975 * 976 * For more information on this and similar theme functions, check out 977 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 978 * Conditional Tags} article in the Theme Developer Handbook. 975 979 * 976 980 * @since 3.0.0 … … 1982 1986 1983 1987 /** 1984 * Check ifpost is sticky.1988 * Determines whether a post is sticky. 1985 1989 * 1986 1990 * Sticky posts should remain at the top of The Loop. If the post ID is not 1987 1991 * given, then The Loop ID for the current post will be used. 1988 * 1992 * 1993 * For more information on this and similar theme functions, check out 1994 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 1995 * Conditional Tags} article in the Theme Developer Handbook. 1996 * 1989 1997 * @since 2.7.0 1990 1998 * … … 5046 5054 5047 5055 /** 5048 * Check if the attachment URI is local one and is really an attachment. 5049 * 5056 * Determines whether an attachment URI is local and really an attachment. 5057 * 5058 * For more information on this and similar theme functions, check out 5059 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 5060 * Conditional Tags} article in the Theme Developer Handbook. 5061 * 5050 5062 * @since 2.0.0 5051 5063 * … … 5521 5533 5522 5534 /** 5523 * Checks if the attachment is an image. 5535 * Determines whether an attachment is an image. 5536 * 5537 * For more information on this and similar theme functions, check out 5538 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 5539 * Conditional Tags} article in the Theme Developer Handbook. 5524 5540 * 5525 5541 * @since 2.1.0 -
trunk/src/wp-includes/query.php
r42588 r42710 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. 325 357 * 326 358 * A conditional check to test whether the page is a date-based archive page displaying posts for the current day. 327 * 359 * 360 * For more information on this and similar theme functions, check out 361 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 362 * Conditional Tags} article in the Theme Developer Handbook. 363 * 328 364 * @since 1.5.0 329 365 * … … 344 380 345 381 /** 346 * Is the query for a feed? 347 * 382 * Determines whether the query is for a feed. 383 * 384 * For more information on this and similar theme functions, check out 385 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 386 * Conditional Tags} article in the Theme Developer Handbook. 387 * 348 388 * @since 1.5.0 349 389 * … … 385 425 386 426 /** 387 * Is the query for the front page of the site?427 * Determines whether the query is for the front page of the site. 388 428 * 389 429 * This is for what is displayed at your site's main URL. … … 395 435 * 396 436 * Otherwise the same as @see is_home() 397 * 437 * 438 * For more information on this and similar theme functions, check out 439 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 440 * Conditional Tags} article in the Theme Developer Handbook. 441 * 398 442 * @since 2.5.0 399 443 * … … 414 458 415 459 /** 416 * Determines ifthe query is for the blog homepage.460 * Determines whether the query is for the blog homepage. 417 461 * 418 462 * The blog homepage is the page that shows the time-based blog content of the site. … … 423 467 * If a static page is set for the front page of the site, this function will return true only 424 468 * on the page you set as the "Posts page". 425 * 469 * 470 * For more information on this and similar theme functions, check out 471 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 472 * Conditional Tags} article in the Theme Developer Handbook. 473 * 426 474 * @since 1.5.0 427 475 * … … 443 491 444 492 /** 445 * Is the query for an existing month archive? 446 * 493 * Determines whether the query is for an existing month archive. 494 * 495 * For more information on this and similar theme functions, check out 496 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 497 * Conditional Tags} article in the Theme Developer Handbook. 498 * 447 499 * @since 1.5.0 448 500 * … … 463 515 464 516 /** 465 * Is the query for an existing single page?517 * Determines whether the query is for an existing single page. 466 518 * 467 519 * If the $page parameter is specified, this function will additionally 468 520 * check if the query is for one of the pages specified. 469 * 521 * 522 * For more information on this and similar theme functions, check out 523 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 524 * Conditional Tags} article in the Theme Developer Handbook. 525 * 470 526 * @see is_single() 471 527 * @see is_singular() … … 490 546 491 547 /** 492 * Is the query for paged result and not for the first page? 493 * 548 * Determines whether the query is for paged results and not for the first page. 549 * 550 * For more information on this and similar theme functions, check out 551 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 552 * Conditional Tags} article in the Theme Developer Handbook. 553 * 494 554 * @since 1.5.0 495 555 * … … 510 570 511 571 /** 512 * Is the query for a post or page preview? 513 * 572 * Determines whether the query is for a post or page preview. 573 * 574 * For more information on this and similar theme functions, check out 575 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 576 * Conditional Tags} article in the Theme Developer Handbook. 577 * 514 578 * @since 2.0.0 515 579 * … … 550 614 551 615 /** 552 * Is the query for a search? 553 * 616 * Determines whether the query is for a search. 617 * 618 * For more information on this and similar theme functions, check out 619 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 620 * Conditional Tags} article in the Theme Developer Handbook. 621 * 554 622 * @since 1.5.0 555 623 * … … 570 638 571 639 /** 572 * Is the query for an existing single post?640 * Determines whether the query is for an existing single post. 573 641 * 574 642 * Works for any post type, except attachments and pages … … 576 644 * If the $post parameter is specified, this function will additionally 577 645 * check if the query is for one of the Posts specified. 578 * 646 * 647 * For more information on this and similar theme functions, check out 648 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 649 * Conditional Tags} article in the Theme Developer Handbook. 650 * 579 651 * @see is_page() 580 652 * @see is_singular() … … 599 671 600 672 /** 601 * Is the query for an existing single post of any post type (post, attachment, page,602 * custom post types)?673 * Determines whether the query is for an existing single post of any post type 674 * (post, attachment, page, custom post types). 603 675 * 604 676 * If the $post_types parameter is specified, this function will additionally 605 677 * check if the query is for one of the Posts Types specified. 606 * 678 * 679 * For more information on this and similar theme functions, check out 680 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 681 * Conditional Tags} article in the Theme Developer Handbook. 682 * 607 683 * @see is_page() 608 684 * @see is_single() … … 627 703 628 704 /** 629 * Is the query for a specific time? 705 * Determines whether the query is for a specific time. 706 * 707 * For more information on this and similar theme functions, check out 708 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 709 * Conditional Tags} article in the Theme Developer Handbook. 630 710 * 631 711 * @since 1.5.0 … … 647 727 648 728 /** 649 * Is the query for a trackback endpoint call? 729 * Determines whether the query is for a trackback endpoint call. 730 * 731 * For more information on this and similar theme functions, check out 732 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 733 * Conditional Tags} article in the Theme Developer Handbook. 650 734 * 651 735 * @since 1.5.0 … … 667 751 668 752 /** 669 * Is the query for an existing year archive? 753 * Determines whether the query is for an existing year archive. 754 * 755 * For more information on this and similar theme functions, check out 756 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 757 * Conditional Tags} article in the Theme Developer Handbook. 670 758 * 671 759 * @since 1.5.0 … … 687 775 688 776 /** 689 * Is the query a 404 (returns no results)? 690 * 777 * Determines whether the query has resulted in a 404 (returns no results). 778 * 779 * For more information on this and similar theme functions, check out 780 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 781 * Conditional Tags} article in the Theme Developer Handbook. 782 * 691 783 * @since 1.5.0 692 784 * … … 727 819 728 820 /** 729 * Is the query the main query? 730 * 821 * Determines whether the query is the main query. 822 * 823 * For more information on this and similar theme functions, check out 824 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 825 * Conditional Tags} article in the Theme Developer Handbook. 826 * 731 827 * @since 3.3.0 732 828 * … … 771 867 772 868 /** 773 * Whether the caller is in the Loop. 869 * Determines whether the caller is in the Loop. 870 * 871 * For more information on this and similar theme functions, check out 872 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 873 * Conditional Tags} article in the Theme Developer Handbook. 774 874 * 775 875 * @since 2.0.0 -
trunk/src/wp-includes/taxonomy.php
r42699 r42710 260 260 261 261 /** 262 * Checks thatthe taxonomy name exists.262 * Determines whether the taxonomy name exists. 263 263 * 264 264 * Formerly is_taxonomy(), introduced in 2.3.0. 265 * 266 * For more information on this and similar theme functions, check out 267 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 268 * Conditional Tags} article in the Theme Developer Handbook. 265 269 * 266 270 * @since 3.0.0 … … 278 282 279 283 /** 280 * Whether the taxonomy object is hierarchical.284 * Determines whether the taxonomy object is hierarchical. 281 285 * 282 286 * Checks to make sure that the taxonomy is an object first. Then Gets the … … 284 288 * 285 289 * A false return value might also mean that the taxonomy does not exist. 290 * 291 * For more information on this and similar theme functions, check out 292 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 293 * Conditional Tags} article in the Theme Developer Handbook. 286 294 * 287 295 * @since 2.3.0 … … 1316 1324 1317 1325 /** 1318 * Check if Term exists.1326 * Determines whether a term exists. 1319 1327 * 1320 1328 * Formerly is_term(), introduced in 2.3.0. 1329 * 1330 * For more information on this and similar theme functions, check out 1331 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 1332 * Conditional Tags} article in the Theme Developer Handbook. 1321 1333 * 1322 1334 * @since 3.0.0 -
trunk/src/wp-includes/user.php
r42678 r42710 1370 1370 1371 1371 /** 1372 * Checks whether the given username exists. 1372 * Determines whether the given username exists. 1373 * 1374 * For more information on this and similar theme functions, check out 1375 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 1376 * Conditional Tags} article in the Theme Developer Handbook. 1373 1377 * 1374 1378 * @since 2.0.0 … … 1396 1400 1397 1401 /** 1398 * Checks whether the given email exists. 1402 * Determines whether the given email exists. 1403 * 1404 * For more information on this and similar theme functions, check out 1405 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 1406 * Conditional Tags} article in the Theme Developer Handbook. 1399 1407 * 1400 1408 * @since 2.1.0 -
trunk/src/wp-includes/widgets.php
r42374 r42710 802 802 803 803 /** 804 * Whetherwidget is displayed on the front end.804 * Determines whether a given widget is displayed on the front end. 805 805 * 806 806 * Either $callback or $id_base can be used … … 813 813 * NOTE: $widget_id and $id_base are the same for single widgets. To be effective 814 814 * this function has to run after widgets have initialized, at action {@see 'init'} or later. 815 * 815 * 816 * For more information on this and similar theme functions, check out 817 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 818 * Conditional Tags} article in the Theme Developer Handbook. 819 * 816 820 * @since 2.2.0 817 821 * … … 850 854 851 855 /** 852 * Whether the dynamic sidebar is enabled and used by theme. 853 * 856 * Determines whether the dynamic sidebar is enabled and used by the theme. 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 * 854 862 * @since 2.2.0 855 863 * … … 875 883 876 884 /** 877 * Whether a sidebar is in use. 878 * 885 * Determines whether a sidebar is in use. 886 * 887 * For more information on this and similar theme functions, check out 888 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 889 * Conditional Tags} article in the Theme Developer Handbook. 890 * 879 891 * @since 2.8.0 880 892 *
Note: See TracChangeset
for help on using the changeset viewer.