Changeset 48695
- Timestamp:
- 07/30/2020 07:12:02 PM (5 years ago)
- Location:
- trunk/src
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-cron.php
r47198 r48695 1 1 <?php 2 2 /** 3 * A pseudo- CRON daemon for scheduling WordPress tasks3 * A pseudo-cron daemon for scheduling WordPress tasks. 4 4 * 5 * WP 5 * WP-Cron is triggered when the site receives a visit. In the scenario 6 6 * where a site may not receive enough visits to execute scheduled tasks 7 7 * in a timely manner, this file can be called directly or via a server 8 * CRONdaemon for X number of times.8 * cron daemon for X number of times. 9 9 * 10 10 * Defining DISABLE_WP_CRON as true and calling this file directly are … … 12 12 * 13 13 * The HTTP request to this file will not slow down the visitor who happens to 14 * visit when the cron job is needed to run.14 * visit when a scheduled cron event runs. 15 15 * 16 16 * @package WordPress … … 34 34 35 35 /** 36 * Tell WordPress we are doing the CRONtask.36 * Tell WordPress we are doing the cron task. 37 37 * 38 38 * @var bool -
trunk/src/wp-includes/comment-template.php
r48597 r48695 2241 2241 * Outputs a complete commenting form for use within a template. 2242 2242 * 2243 * Most strings and form fields may be controlled through the $argsarray passed2243 * Most strings and form fields may be controlled through the `$args` array passed 2244 2244 * into the function, while you may also choose to use the {@see 'comment_form_default_fields'} 2245 2245 * filter to modify the array of default fields if you'd just like to add a new 2246 2246 * one or remove a single field. All fields are also individually passed through 2247 * a filter of the {@see 'comment_form_field_$name'} where $nameis the key used2247 * a filter of the {@see 'comment_form_field_$name'} where `$name` is the key used 2248 2248 * in the array of fields. 2249 2249 * -
trunk/src/wp-includes/deprecated.php
r48575 r48695 3565 3565 * Formats text for the rich text editor. 3566 3566 * 3567 * The {@see 'richedit_pre'} filter is applied here. If $textis empty the filter will3567 * The {@see 'richedit_pre'} filter is applied here. If `$text` is empty the filter will 3568 3568 * be applied to an empty string. 3569 3569 * -
trunk/src/wp-includes/embed.php
r48574 r48695 994 994 995 995 /** 996 * Enqueue embed iframe default CSS and JS & fire do_action('enqueue_embed_scripts')996 * Enqueues embed iframe default CSS and JS. 997 997 * 998 998 * Enqueue PNG fallback CSS for embed iframe for legacy versions of IE. -
trunk/src/wp-includes/functions.php
r48621 r48695 6822 6822 * @param string $context Optional. Context in which the function is called. Accepts either 'admin', 6823 6823 * 'image', or an arbitrary other context. If an arbitrary context is passed, 6824 * the similarly arbitrary {@see ' {$context}_memory_limit'} filter will be6824 * the similarly arbitrary {@see '$context_memory_limit'} filter will be 6825 6825 * invoked. Default 'admin'. 6826 6826 * @return bool|int|string The limit that was set or false on failure. -
trunk/src/wp-includes/rewrite.php
r47808 r48695 144 144 * Add a new rewrite tag (like %postname%). 145 145 * 146 * The $query parameter is optional. If it is omitted you must ensure that147 * you call this on, or before, the {@see 'init'} hook. This is because $query defaults148 * to "$tag=", and for this to work a new query var has to be added.146 * The `$query` parameter is optional. If it is omitted you must ensure that you call 147 * this on, or before, the {@see 'init'} hook. This is because `$query` defaults to 148 * `$tag=`, and for this to work a new query var has to be added. 149 149 * 150 150 * @since 2.1.0 -
trunk/src/wp-includes/taxonomy.php
r48665 r48695 2408 2408 * Fires immediately after a new term is created, before the term cache is cleaned. 2409 2409 * 2410 * The {@see 'create_$taxonomy'} hook is also available for targeting a specific 2411 * taxonomy. 2412 * 2410 2413 * @since 2.3.0 2411 2414 * … … 2444 2447 * Fires after a new term is created, and after the term cache has been cleaned. 2445 2448 * 2449 * The {@see 'created_$taxonomy'} hook is also available for targeting a specific 2450 * taxonomy. 2451 * 2446 2452 * @since 2.3.0 2447 2453 * … … 2467 2473 /** 2468 2474 * Fires after a term has been saved, and the term cache has been cleared. 2475 * 2476 * The {@see 'saved_$taxonomy'} hook is also available for targeting a specific 2477 * taxonomy. 2469 2478 * 2470 2479 * @since 5.5.0
Note: See TracChangeset
for help on using the changeset viewer.