Make WordPress Core


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

Pinking shears.

See #41057.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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 *
Note: See TracChangeset for help on using the changeset viewer.