- Timestamp:
- 03/18/2018 02:22:09 PM (7 years ago)
- Location:
- trunk
- Files:
-
- 18 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/plugin.php
r42787 r42843 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 467 * For more information on this and similar theme functions, check out 468 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 468 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 469 469 * Conditional Tags} article in the Theme Developer Handbook. 470 * 470 * 471 471 * @since 2.5.0 472 472 * … … 482 482 * 483 483 * Reverse of is_plugin_active(). Used as a callback. 484 * 484 * 485 485 * For more information on this and similar theme functions, check out 486 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 486 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 487 487 * Conditional Tags} article in the Theme Developer Handbook. 488 * 488 * 489 489 * @since 3.1.0 490 490 * @see is_plugin_active() … … 504 504 * Plugins in the mu-plugins/ folder can't be "activated," so this function will 505 505 * return false for those plugins. 506 * 506 * 507 507 * For more information on this and similar theme functions, check out 508 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 508 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 509 509 * Conditional Tags} article in the Theme Developer Handbook. 510 * 510 * 511 511 * @since 3.0.0 512 512 * -
trunk/src/wp-includes/admin-bar.php
r42710 r42843 1119 1119 /** 1120 1120 * Determines whether the admin bar should be showing. 1121 * 1121 * 1122 1122 * For more information on this and similar theme functions, check out 1123 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 1123 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 1124 1124 * Conditional Tags} article in the Theme Developer Handbook. 1125 * 1125 * 1126 1126 * @since 3.1.0 1127 1127 * -
trunk/src/wp-includes/author-template.php
r42710 r42843 525 525 * 526 526 * Checks to see if more than one author has published posts. 527 * 527 * 528 528 * For more information on this and similar theme functions, check out 529 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 529 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 530 530 * Conditional Tags} article in the Theme Developer Handbook. 531 * 531 * 532 532 * @since 3.2.0 533 533 * -
trunk/src/wp-includes/category-template.php
r42710 r42843 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 * 234 * 235 235 * For more information on this and similar theme functions, check out 236 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 236 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 237 237 * Conditional Tags} article in the Theme Developer Handbook. 238 238 * … … 1420 1420 * Prior to v2.7, this function could only be used in the WordPress Loop. 1421 1421 * As of 2.7, the function can be used anywhere if it is provided a post ID or post object. 1422 * 1422 * 1423 1423 * For more information on this and similar theme functions, check out 1424 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 1424 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 1425 1425 * Conditional Tags} article in the Theme Developer Handbook. 1426 1426 * -
trunk/src/wp-includes/class-wp-query.php
r42768 r42843 3164 3164 $this->found_posts = count( $this->posts ); 3165 3165 } else { 3166 if ( null === $this->posts ) { 3166 if ( null === $this->posts ) { 3167 3167 $this->found_posts = 0; 3168 3168 } else { -
trunk/src/wp-includes/comment-template.php
r42827 r42843 1203 1203 /** 1204 1204 * Determines whether the current post is open for comments. 1205 * 1205 * 1206 1206 * For more information on this and similar theme functions, check out 1207 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 1207 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 1208 1208 * Conditional Tags} article in the Theme Developer Handbook. 1209 * 1209 * 1210 1210 * @since 1.5.0 1211 1211 * … … 1233 1233 /** 1234 1234 * Determines whether the current post is open for pings. 1235 * 1235 * 1236 1236 * For more information on this and similar theme functions, check out 1237 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 1237 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 1238 1238 * Conditional Tags} article in the Theme Developer Handbook. 1239 1239 * -
trunk/src/wp-includes/functions.wp-scripts.php
r42710 r42843 321 321 /** 322 322 * Determines whether a script has been added to the queue. 323 * 323 * 324 324 * For more information on this and similar theme functions, check out 325 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 325 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 326 326 * Conditional Tags} article in the Theme Developer Handbook. 327 * 327 * 328 328 * @since 2.8.0 329 329 * @since 3.5.0 'enqueued' added as an alias of the 'queue' list. -
trunk/src/wp-includes/general-template.php
r42827 r42843 3961 3961 /** 3962 3962 * Registers the default admin color schemes. 3963 * 3963 * 3964 3964 * Registers the initial set of eight color schemes in the Profile section 3965 3965 * of the dashboard which allows for styling the admin menu and toolbar. 3966 * 3966 * 3967 3967 * @see wp_admin_css_color() 3968 3968 * -
trunk/src/wp-includes/l10n.php
r42753 r42843 918 918 * 919 919 * @see _get_path_to_translation() 920 * @staticvar array $cached_mofiles 920 * @staticvar array $cached_mofiles 921 921 * 922 922 * @param string $domain Text domain. Unique identifier for retrieving translated strings. … … 1289 1289 /** 1290 1290 * Determines whether the current locale is right-to-left (RTL). 1291 * 1291 * 1292 1292 * For more information on this and similar theme functions, check out 1293 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 1293 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 1294 1294 * Conditional Tags} article in the Theme Developer Handbook. 1295 1295 * -
trunk/src/wp-includes/load.php
r42836 r42843 775 775 * 776 776 * For more information on this and similar theme functions, check out 777 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 778 * Conditional Tags} article in the Theme Developer Handbook. 777 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 778 * Conditional Tags} article in the Theme Developer Handbook. 779 779 * 780 780 * @since 1.5.1 -
trunk/src/wp-includes/pluggable.php
r42827 r42843 985 985 * 986 986 * For more information on this and similar theme functions, check out 987 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 987 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 988 988 * Conditional Tags} article in the Theme Developer Handbook. 989 * 989 * 990 990 * @since 2.0.0 991 991 * -
trunk/src/wp-includes/post-template.php
r42721 r42843 414 414 /** 415 415 * Determines whether the post has a custom excerpt. 416 * 416 * 417 417 * For more information on this and similar theme functions, check out 418 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 418 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 419 419 * Conditional Tags} article in the Theme Developer Handbook. 420 420 * … … 1699 1699 * You can optionally provide a template name or array of template names 1700 1700 * and then the check will be specific to that template. 1701 * 1701 * 1702 1702 * For more information on this and similar theme functions, check out 1703 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 1703 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 1704 1704 * Conditional Tags} article in the Theme Developer Handbook. 1705 * 1705 * 1706 1706 * @since 2.5.0 1707 1707 * @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
r42710 r42843 12 12 /** 13 13 * Determines whether a post has an image attached. 14 * 14 * 15 15 * For more information on this and similar theme functions, check out 16 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 16 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 17 17 * Conditional Tags} article in the Theme Developer Handbook. 18 18 * -
trunk/src/wp-includes/query.php
r42722 r42843 140 140 * 141 141 * Month, Year, Category, Author, Post Type archive... 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 * 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 * 147 147 * @since 1.5.0 148 148 * … … 164 164 /** 165 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 * 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 * 171 171 * @since 3.1.0 172 172 * … … 189 189 /** 190 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 * 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 * 196 196 * @since 2.0.0 197 197 * … … 217 217 * If the $author parameter is specified, this function will additionally 218 218 * check if the query is for one of the authors specified. 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 * 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 * 224 224 * @since 1.5.0 225 225 * … … 245 245 * If the $category parameter is specified, this function will additionally 246 246 * check if the query is for one of the categories specified. 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 * 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 * 252 252 * @since 1.5.0 253 253 * … … 273 273 * If the $tag parameter is specified, this function will additionally 274 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/ 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 278 * Conditional Tags} article in the Theme Developer Handbook. 279 279 * … … 305 305 * this function will additionally check if the query is for one of the terms 306 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/ 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 310 * Conditional Tags} article in the Theme Developer Handbook. 311 311 * … … 331 331 /** 332 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 * 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 * 338 338 * @since 1.5.0 339 339 * … … 357 357 * 358 358 * A conditional check to test whether the page is a date-based archive page displaying posts for the current day. 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 * 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 * 364 364 * @since 1.5.0 365 365 * … … 381 381 /** 382 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 * 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 * 388 388 * @since 1.5.0 389 389 * … … 435 435 * 436 436 * Otherwise the same as @see is_home() 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 * 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 * 442 442 * @since 2.5.0 443 443 * … … 467 467 * If a static page is set for the front page of the site, this function will return true only 468 468 * on the page you set as the "Posts page". 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 * 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 * 474 474 * @since 1.5.0 475 475 * … … 492 492 /** 493 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 * 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 * 499 499 * @since 1.5.0 500 500 * … … 519 519 * If the $page parameter is specified, this function will additionally 520 520 * check if the query is for one of the pages specified. 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 * 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 * 526 526 * @see is_single() 527 527 * @see is_singular() … … 547 547 /** 548 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 * 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 * 554 554 * @since 1.5.0 555 555 * … … 571 571 /** 572 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 * 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 * 578 578 * @since 2.0.0 579 579 * … … 615 615 /** 616 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 * 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 * 622 622 * @since 1.5.0 623 623 * … … 644 644 * If the $post parameter is specified, this function will additionally 645 645 * check if the query is for one of the Posts specified. 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 * 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 * 651 651 * @see is_page() 652 652 * @see is_singular() … … 676 676 * If the $post_types parameter is specified, this function will additionally 677 677 * check if the query is for one of the Posts Types specified. 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 * 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 * 683 683 * @see is_page() 684 684 * @see is_single() … … 704 704 /** 705 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/ 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 709 * Conditional Tags} article in the Theme Developer Handbook. 710 710 * … … 728 728 /** 729 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/ 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 733 * Conditional Tags} article in the Theme Developer Handbook. 734 734 * … … 752 752 /** 753 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/ 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 757 * Conditional Tags} article in the Theme Developer Handbook. 758 758 * … … 776 776 /** 777 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 * 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 * 783 783 * @since 1.5.0 784 784 * … … 820 820 /** 821 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 * 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 * 827 827 * @since 3.3.0 828 828 * … … 868 868 /** 869 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/ 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 873 * Conditional Tags} article in the Theme Developer Handbook. 874 874 * -
trunk/src/wp-includes/taxonomy.php
r42827 r42843 263 263 * 264 264 * Formerly is_taxonomy(), introduced in 2.3.0. 265 * 265 * 266 266 * For more information on this and similar theme functions, check out 267 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 267 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 268 268 * Conditional Tags} article in the Theme Developer Handbook. 269 269 * … … 288 288 * 289 289 * A false return value might also mean that the taxonomy does not exist. 290 * 290 * 291 291 * For more information on this and similar theme functions, check out 292 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 292 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 293 293 * Conditional Tags} article in the Theme Developer Handbook. 294 294 * … … 1327 1327 * 1328 1328 * Formerly is_term(), introduced in 2.3.0. 1329 * 1329 * 1330 1330 * For more information on this and similar theme functions, check out 1331 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 1331 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 1332 1332 * Conditional Tags} article in the Theme Developer Handbook. 1333 1333 * -
trunk/src/wp-includes/widgets.php
r42710 r42843 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 816 * For more information on this and similar theme functions, check out 817 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 817 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 818 818 * Conditional Tags} article in the Theme Developer Handbook. 819 * 819 * 820 820 * @since 2.2.0 821 821 * … … 855 855 /** 856 856 * Determines whether the dynamic sidebar is enabled and used by the theme. 857 * 857 * 858 858 * For more information on this and similar theme functions, check out 859 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 859 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 860 860 * Conditional Tags} article in the Theme Developer Handbook. 861 * 861 * 862 862 * @since 2.2.0 863 863 * … … 884 884 /** 885 885 * Determines whether a sidebar is in use. 886 * 886 * 887 887 * For more information on this and similar theme functions, check out 888 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 888 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 889 889 * Conditional Tags} article in the Theme Developer Handbook. 890 * 890 * 891 891 * @since 2.8.0 892 892 * -
trunk/src/wp-login.php
r42827 r42843 872 872 /** 873 873 * Fires an action hook when the account action was not confirmed. 874 * 874 * 875 875 * After running this action hook the page will die. 876 * 876 * 877 877 * @param WP_Error $result Error object. 878 878 */ … … 881 881 wp_die( $result ); 882 882 } 883 883 884 884 /** 885 885 * Fires an action hook when the account action has been confirmed by the user. 886 * 886 * 887 887 * Using this you can assume the user has agreed to perform the action by 888 888 * clicking on the link in the confirmation email. 889 * 890 * After firing this action hook the page will redirect to wp-login a callback 889 * 890 * After firing this action hook the page will redirect to wp-login a callback 891 891 * redirects or exits first. 892 * 892 * 893 893 * @param array $result { 894 894 * Data about the action which was confirmed. -
trunk/tests/phpunit/tests/rest-api/rest-settings-controller.php
r42724 r42843 11 11 */ 12 12 class WP_Test_REST_Settings_Controller extends WP_Test_REST_Controller_Testcase { 13 13 14 14 protected static $administrator; 15 15 protected static $author;
Note: See TracChangeset
for help on using the changeset viewer.