Changeset 48475
- Timestamp:
- 07/14/2020 12:08:28 PM (4 years ago)
- Location:
- trunk/src
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/ajax-actions.php
r48473 r48475 4776 4776 * An array of callable exporters of personal data. Default empty array. 4777 4777 * 4778 * @type array {4778 * @type array ...$0 { 4779 4779 * Array of personal data exporters. 4780 4780 * … … 4966 4966 * An array of callable erasers of personal data. Default empty array. 4967 4967 * 4968 * @type array {4968 * @type array ...$0 { 4969 4969 * Array of personal data exporters. 4970 4970 * -
trunk/src/wp-admin/includes/class-wp-site-health.php
r48473 r48475 158 158 * 159 159 * @param array $test_result { 160 * An associat edarray of test result data.160 * An associative array of test result data. 161 161 * 162 * @param string $label A label describing the test, and is used as a header in the output.163 * @param string $status The status of the test, which can be a value of `good`, `recommended` or `critical`.162 * @param string $label A label describing the test, and is used as a header in the output. 163 * @param string $status The status of the test, which can be a value of `good`, `recommended` or `critical`. 164 164 * @param array $badge { 165 165 * Tests are put into categories which have an associated badge shown, these can be modified and assigned here. -
trunk/src/wp-includes/class-wp-date-query.php
r48462 r48475 73 73 * Array of date query clauses. 74 74 * 75 * @type array {75 * @type array ...$0 { 76 76 * @type string $column Optional. The column to query against. If undefined, inherits the value of 77 77 * the `$default_column` parameter. Accepts 'post_date', 'post_date_gmt', … … 82 82 * @type string $relation Optional. The boolean relationship between the date queries. Accepts 'OR' or 'AND'. 83 83 * Default 'OR'. 84 * @type array {84 * @type array ...$0 { 85 85 * Optional. An array of first-order clause parameters, or another fully-formed date query. 86 86 * -
trunk/src/wp-includes/class-wp-editor.php
r47861 r48475 1795 1795 * 1796 1796 * @param array $results { 1797 * An a ssociative arrayof query results.1798 * 1799 * @type array {1797 * An array of associative arrays of query results. 1798 * 1799 * @type array ...$0 { 1800 1800 * @type int $ID Post ID. 1801 1801 * @type string $title The trimmed, escaped post title. -
trunk/src/wp-includes/class-wp-meta-query.php
r48110 r48475 110 110 * @type string $relation Optional. The MySQL keyword used to join 111 111 * the clauses of the query. Accepts 'AND', or 'OR'. Default 'AND'. 112 * @type array {112 * @type array ...$0 { 113 113 * Optional. An array of first-order clause parameters, or another fully-formed meta query. 114 114 * -
trunk/src/wp-includes/class-wp-tax-query.php
r48110 r48475 97 97 * @type string $relation Optional. The MySQL keyword used to join 98 98 * the clauses of the query. Accepts 'AND', or 'OR'. Default 'AND'. 99 * @type array {100 * Optional.An array of first-order clause parameters, or another fully-formed tax query.99 * @type array ...$0 { 100 * An array of first-order clause parameters, or another fully-formed tax query. 101 101 * 102 102 * @type string $taxonomy Taxonomy being queried. Optional when field=term_taxonomy_id.
Note: See TracChangeset
for help on using the changeset viewer.