Make WordPress Core

Changeset 42843 for trunk


Ignore:
Timestamp:
03/18/2018 02:22:09 PM (7 years ago)
Author:
ocean90
Message:

Pinking shears.

See #41057.

Location:
trunk
Files:
18 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/plugin.php

    r42787 r42843  
    464464 * Plugins in the mu-plugins/ folder can't be "activated," so this function will
    465465 * return false for those plugins.
    466  * 
     466 *
    467467 * 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/
    469469 * Conditional Tags} article in the Theme Developer Handbook.
    470  * 
     470 *
    471471 * @since 2.5.0
    472472 *
     
    482482 *
    483483 * Reverse of is_plugin_active(). Used as a callback.
    484  * 
     484 *
    485485 * 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/
    487487 * Conditional Tags} article in the Theme Developer Handbook.
    488  * 
     488 *
    489489 * @since 3.1.0
    490490 * @see is_plugin_active()
     
    504504 * Plugins in the mu-plugins/ folder can't be "activated," so this function will
    505505 * return false for those plugins.
    506  * 
     506 *
    507507 * 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/
    509509 * Conditional Tags} article in the Theme Developer Handbook.
    510  * 
     510 *
    511511 * @since 3.0.0
    512512 *
  • trunk/src/wp-includes/admin-bar.php

    r42710 r42843  
    11191119/**
    11201120 * Determines whether the admin bar should be showing.
    1121  * 
     1121 *
    11221122 * 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/
    11241124 * Conditional Tags} article in the Theme Developer Handbook.
    1125  * 
     1125 *
    11261126 * @since 3.1.0
    11271127 *
  • trunk/src/wp-includes/author-template.php

    r42710 r42843  
    525525 *
    526526 * Checks to see if more than one author has published posts.
    527  * 
     527 *
    528528 * 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/
    530530 * Conditional Tags} article in the Theme Developer Handbook.
    531  * 
     531 *
    532532 * @since 3.2.0
    533533 *
  • trunk/src/wp-includes/category-template.php

    r42710 r42843  
    232232 * Prior to v2.7, this function could only be used in the WordPress Loop.
    233233 * As of 2.7, the function can be used anywhere if it is provided a post ID or post object.
    234  * 
     234 *
    235235 * 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/
    237237 * Conditional Tags} article in the Theme Developer Handbook.
    238238 *
     
    14201420 * Prior to v2.7, this function could only be used in the WordPress Loop.
    14211421 * As of 2.7, the function can be used anywhere if it is provided a post ID or post object.
    1422  * 
     1422 *
    14231423 * 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/
    14251425 * Conditional Tags} article in the Theme Developer Handbook.
    14261426 *
  • trunk/src/wp-includes/class-wp-query.php

    r42768 r42843  
    31643164                $this->found_posts = count( $this->posts );
    31653165            } else {
    3166                 if ( null === $this->posts ) { 
     3166                if ( null === $this->posts ) {
    31673167                    $this->found_posts = 0;
    31683168                } else {
  • trunk/src/wp-includes/comment-template.php

    r42827 r42843  
    12031203/**
    12041204 * Determines whether the current post is open for comments.
    1205  * 
     1205 *
    12061206 * 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/
    12081208 * Conditional Tags} article in the Theme Developer Handbook.
    1209  * 
     1209 *
    12101210 * @since 1.5.0
    12111211 *
     
    12331233/**
    12341234 * Determines whether the current post is open for pings.
    1235  * 
     1235 *
    12361236 * 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/
    12381238 * Conditional Tags} article in the Theme Developer Handbook.
    12391239 *
  • trunk/src/wp-includes/functions.wp-scripts.php

    r42710 r42843  
    321321/**
    322322 * Determines whether a script has been added to the queue.
    323  * 
     323 *
    324324 * 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/
    326326 * Conditional Tags} article in the Theme Developer Handbook.
    327  * 
     327 *
    328328 * @since 2.8.0
    329329 * @since 3.5.0 'enqueued' added as an alias of the 'queue' list.
  • trunk/src/wp-includes/general-template.php

    r42827 r42843  
    39613961/**
    39623962 * Registers the default admin color schemes.
    3963  * 
     3963 *
    39643964 * Registers the initial set of eight color schemes in the Profile section
    39653965 * of the dashboard which allows for styling the admin menu and toolbar.
    3966  * 
     3966 *
    39673967 * @see wp_admin_css_color()
    39683968 *
  • trunk/src/wp-includes/l10n.php

    r42753 r42843  
    918918 *
    919919 * @see _get_path_to_translation()
    920  * @staticvar array $cached_mofiles 
     920 * @staticvar array $cached_mofiles
    921921 *
    922922 * @param string $domain Text domain. Unique identifier for retrieving translated strings.
     
    12891289/**
    12901290 * Determines whether the current locale is right-to-left (RTL).
    1291  * 
     1291 *
    12921292 * 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/
    12941294 * Conditional Tags} article in the Theme Developer Handbook.
    12951295 *
  • trunk/src/wp-includes/load.php

    r42836 r42843  
    775775 *
    776776 * 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.
    779779 *
    780780 * @since 1.5.1
  • trunk/src/wp-includes/pluggable.php

    r42827 r42843  
    985985     *
    986986     * 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/
    988988     * Conditional Tags} article in the Theme Developer Handbook.
    989      * 
     989     *
    990990     * @since 2.0.0
    991991     *
  • trunk/src/wp-includes/post-template.php

    r42721 r42843  
    414414/**
    415415 * Determines whether the post has a custom excerpt.
    416  * 
     416 *
    417417 * 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/
    419419 * Conditional Tags} article in the Theme Developer Handbook.
    420420 *
     
    16991699 * You can optionally provide a template name or array of template names
    17001700 * and then the check will be specific to that template.
    1701  * 
     1701 *
    17021702 * 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/
    17041704 * Conditional Tags} article in the Theme Developer Handbook.
    1705  * 
     1705 *
    17061706 * @since 2.5.0
    17071707 * @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  
    1212/**
    1313 * Determines whether a post has an image attached.
    14  * 
     14 *
    1515 * 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/
    1717 * Conditional Tags} article in the Theme Developer Handbook.
    1818 *
  • trunk/src/wp-includes/query.php

    r42722 r42843  
    140140 *
    141141 * 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 *
    147147 * @since 1.5.0
    148148 *
     
    164164/**
    165165 * 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 *
    171171 * @since 3.1.0
    172172 *
     
    189189/**
    190190 * 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 *
    196196 * @since 2.0.0
    197197 *
     
    217217 * If the $author parameter is specified, this function will additionally
    218218 * 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 *
    224224 * @since 1.5.0
    225225 *
     
    245245 * If the $category parameter is specified, this function will additionally
    246246 * 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 *
    252252 * @since 1.5.0
    253253 *
     
    273273 * If the $tag parameter is specified, this function will additionally
    274274 * 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/
    278278 * Conditional Tags} article in the Theme Developer Handbook.
    279279 *
     
    305305 * this function will additionally check if the query is for one of the terms
    306306 * 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/
    310310 * Conditional Tags} article in the Theme Developer Handbook.
    311311 *
     
    331331/**
    332332 * 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 *
    338338 * @since 1.5.0
    339339 *
     
    357357 *
    358358 * 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 *
    364364 * @since 1.5.0
    365365 *
     
    381381/**
    382382 * 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 *
    388388 * @since 1.5.0
    389389 *
     
    435435 *
    436436 * 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 *
    442442 * @since 2.5.0
    443443 *
     
    467467 * If a static page is set for the front page of the site, this function will return true only
    468468 * 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 *
    474474 * @since 1.5.0
    475475 *
     
    492492/**
    493493 * 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 *
    499499 * @since 1.5.0
    500500 *
     
    519519 * If the $page parameter is specified, this function will additionally
    520520 * 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 *
    526526 * @see is_single()
    527527 * @see is_singular()
     
    547547/**
    548548 * 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 *
    554554 * @since 1.5.0
    555555 *
     
    571571/**
    572572 * 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 *
    578578 * @since 2.0.0
    579579 *
     
    615615/**
    616616 * 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 *
    622622 * @since 1.5.0
    623623 *
     
    644644 * If the $post parameter is specified, this function will additionally
    645645 * 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 *
    651651 * @see is_page()
    652652 * @see is_singular()
     
    676676 * If the $post_types parameter is specified, this function will additionally
    677677 * 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 *
    683683 * @see is_page()
    684684 * @see is_single()
     
    704704/**
    705705 * 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/
    709709 * Conditional Tags} article in the Theme Developer Handbook.
    710710 *
     
    728728/**
    729729 * 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/
    733733 * Conditional Tags} article in the Theme Developer Handbook.
    734734 *
     
    752752/**
    753753 * 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/
    757757 * Conditional Tags} article in the Theme Developer Handbook.
    758758 *
     
    776776/**
    777777 * 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 *
    783783 * @since 1.5.0
    784784 *
     
    820820/**
    821821 * 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 *
    827827 * @since 3.3.0
    828828 *
     
    868868/**
    869869 * 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/
    873873 * Conditional Tags} article in the Theme Developer Handbook.
    874874 *
  • trunk/src/wp-includes/taxonomy.php

    r42827 r42843  
    263263 *
    264264 * Formerly is_taxonomy(), introduced in 2.3.0.
    265  * 
     265 *
    266266 * 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/
    268268 * Conditional Tags} article in the Theme Developer Handbook.
    269269 *
     
    288288 *
    289289 * A false return value might also mean that the taxonomy does not exist.
    290  * 
     290 *
    291291 * 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/
    293293 * Conditional Tags} article in the Theme Developer Handbook.
    294294 *
     
    13271327 *
    13281328 * Formerly is_term(), introduced in 2.3.0.
    1329  * 
     1329 *
    13301330 * 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/
    13321332 * Conditional Tags} article in the Theme Developer Handbook.
    13331333 *
  • trunk/src/wp-includes/widgets.php

    r42710 r42843  
    813813 * NOTE: $widget_id and $id_base are the same for single widgets. To be effective
    814814 * this function has to run after widgets have initialized, at action {@see 'init'} or later.
    815  * 
     815 *
    816816 * 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/
    818818 * Conditional Tags} article in the Theme Developer Handbook.
    819  * 
     819 *
    820820 * @since 2.2.0
    821821 *
     
    855855/**
    856856 * Determines whether the dynamic sidebar is enabled and used by the theme.
    857  * 
     857 *
    858858 * 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/
    860860 * Conditional Tags} article in the Theme Developer Handbook.
    861  * 
     861 *
    862862 * @since 2.2.0
    863863 *
     
    884884/**
    885885 * Determines whether a sidebar is in use.
    886  * 
     886 *
    887887 * 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/
    889889 * Conditional Tags} article in the Theme Developer Handbook.
    890  * 
     890 *
    891891 * @since 2.8.0
    892892 *
  • trunk/src/wp-login.php

    r42827 r42843  
    872872            /**
    873873             * Fires an action hook when the account action was not confirmed.
    874              * 
     874             *
    875875             * After running this action hook the page will die.
    876              * 
     876             *
    877877             * @param WP_Error $result Error object.
    878878             */
     
    881881            wp_die( $result );
    882882        }
    883        
     883
    884884        /**
    885885         * Fires an action hook when the account action has been confirmed by the user.
    886          * 
     886         *
    887887         * Using this you can assume the user has agreed to perform the action by
    888888         * 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
    891891         * redirects or exits first.
    892          * 
     892         *
    893893         * @param array $result {
    894894         *     Data about the action which was confirmed.
  • trunk/tests/phpunit/tests/rest-api/rest-settings-controller.php

    r42724 r42843  
    1111 */
    1212class WP_Test_REST_Settings_Controller extends WP_Test_REST_Controller_Testcase {
    13    
     13
    1414    protected static $administrator;
    1515    protected static $author;
Note: See TracChangeset for help on using the changeset viewer.