Changeset 52652
- Timestamp:
- 01/30/2022 07:23:25 PM (3 years ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 15 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-walker-category-dropdown.php
r51779 r52652 32 32 * @since 2.1.0 33 33 * @todo Decouple this 34 * @var array34 * @var string[] 35 35 * 36 36 * @see Walker::$db_fields -
trunk/src/wp-includes/class-walker-category.php
r52180 r52652 31 31 * 32 32 * @since 2.1.0 33 * @var array33 * @var string[] 34 34 * 35 35 * @see Walker::$db_fields -
trunk/src/wp-includes/class-walker-comment.php
r51780 r52652 31 31 * 32 32 * @since 2.7.0 33 * @var array33 * @var string[] 34 34 * 35 35 * @see Walker::$db_fields -
trunk/src/wp-includes/class-walker-nav-menu.php
r51780 r52652 31 31 * @since 3.0.0 32 32 * @todo Decouple this. 33 * @var array33 * @var string[] 34 34 * 35 35 * @see Walker::$db_fields -
trunk/src/wp-includes/class-walker-page-dropdown.php
r51779 r52652 31 31 * 32 32 * @since 2.1.0 33 * @var array33 * @var string[] 34 34 * 35 35 * @see Walker::$db_fields -
trunk/src/wp-includes/class-walker-page.php
r51780 r52652 31 31 * 32 32 * @since 2.1.0 33 * @var array33 * @var string[] 34 34 * 35 35 * @see Walker::$db_fields -
trunk/src/wp-includes/class-wp-block-type.php
r51501 r52652 80 80 * 81 81 * @since 5.5.0 82 * @var array82 * @var string[] 83 83 */ 84 84 public $keywords = array(); … … 224 224 * @type string|null $icon Block type icon. 225 225 * @type string $description A detailed block type description. 226 * @type array$keywords Additional keywords to produce block type as226 * @type string[] $keywords Additional keywords to produce block type as 227 227 * result in search interfaces. 228 228 * @type string|null $textdomain The translation textdomain. -
trunk/src/wp-includes/class-wp-date-query.php
r52332 r52652 54 54 * 55 55 * @since 4.1.0 56 * @var array56 * @var string[] 57 57 */ 58 58 public $time_keys = array( 'after', 'before', 'year', 'month', 'monthnum', 'week', 'w', 'dayofyear', 'day', 'dayofweek', 'dayofweek_iso', 'hour', 'minute', 'second' ); -
trunk/src/wp-includes/class-wp-list-util.php
r52422 r52652 35 35 * 36 36 * @since 4.7.0 37 * @var array37 * @var string[] 38 38 */ 39 39 private $orderby = array(); -
trunk/src/wp-includes/class-wp-locale.php
r52597 r52652 19 19 * 20 20 * @since 2.1.0 21 * @var array21 * @var string[] 22 22 */ 23 23 public $weekday; … … 32 32 * 33 33 * @since 2.1.0 34 * @var array34 * @var string[] 35 35 */ 36 36 public $weekday_initial; … … 40 40 * 41 41 * @since 2.1.0 42 * @var array42 * @var string[] 43 43 */ 44 44 public $weekday_abbrev; … … 48 48 * 49 49 * @since 2.1.0 50 * @var array50 * @var string[] 51 51 */ 52 52 public $month; … … 56 56 * 57 57 * @since 4.4.0 58 * @var array58 * @var string[] 59 59 */ 60 60 public $month_genitive; … … 64 64 * 65 65 * @since 2.1.0 66 * @var array66 * @var string[] 67 67 */ 68 68 public $month_abbrev; … … 74 74 * 75 75 * @since 2.1.0 76 * @var array76 * @var string[] 77 77 */ 78 78 public $meridiem; -
trunk/src/wp-includes/class-wp-post-type.php
r52215 r52652 93 93 * 94 94 * Endpoints would include: 95 * 95 96 * - `?post_type={post_type_key}` 96 97 * - `?{post_type_key}={single_post_slug}` -
trunk/src/wp-includes/class-wp-rewrite.php
r52640 r52652 276 276 * 277 277 * @since 1.5.0 278 * @var array278 * @var string[] 279 279 */ 280 280 public $rewritecode = array( … … 297 297 * 298 298 * @since 1.5.0 299 * @var array299 * @var string[] 300 300 */ 301 301 public $rewritereplace = array( … … 317 317 * 318 318 * @since 1.5.0 319 * @var array319 * @var string[] 320 320 */ 321 321 public $queryreplace = array( … … 337 337 * 338 338 * @since 1.5.0 339 * @var array339 * @var string[] 340 340 */ 341 341 public $feeds = array( 'feed', 'rdf', 'rss', 'rss2', 'atom' ); -
trunk/src/wp-includes/class-wp-taxonomy.php
r51965 r52652 145 145 * 146 146 * @since 4.7.0 147 * @var array147 * @var string[] 148 148 */ 149 149 public $object_type = null; … … 290 290 * @since 4.7.0 291 291 * 292 * @param array|string $object_type Name of the object type for the taxonomy object.293 * @param array|string $args Array or query string of arguments for registering a taxonomy.292 * @param string|string[] $object_type Name or array of names of the object types for the taxonomy. 293 * @param array|string $args Array or query string of arguments for registering a taxonomy. 294 294 */ 295 295 public function set_props( $object_type, $args ) { -
trunk/src/wp-includes/class-wp-theme.php
r52610 r52652 24 24 * @since 3.4.0 25 25 * @since 5.4.0 Added `Requires at least` and `Requires PHP` headers. 26 * @var array26 * @var string[] 27 27 */ 28 28 private static $file_headers = array( … … 55 55 * @since 5.3.0 Added the Twenty Twenty theme. 56 56 * @since 5.6.0 Added the Twenty Twenty-One theme. 57 * @var array57 * @var string[] 58 58 */ 59 59 private static $default_themes = array( … … 78 78 * 79 79 * @since 3.8.0 80 * @var array80 * @var string[] 81 81 */ 82 82 private static $tag_map = array( -
trunk/src/wp-includes/class-wp-walker.php
r52215 r52652 25 25 * 26 26 * @since 2.1.0 27 * @var array27 * @var string[] 28 28 */ 29 29 public $db_fields;
Note: See TracChangeset
for help on using the changeset viewer.