- Timestamp:
- 03/22/2018 08:26:06 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-posts-list-table.php
r42725 r42871 234 234 * @since 4.4.0 235 235 * 236 * @param array $argsURL parameters for the link.237 * @param string $label Link text.238 * @param string $class Optional. Class attribute. Default empty string.236 * @param string[] $args Associative array of URL parameters for the link. 237 * @param string $label Link text. 238 * @param string $class Optional. Class attribute. Default empty string. 239 239 * @return string The formatted link string. 240 240 */ … … 558 558 * @since 3.5.0 559 559 * 560 * @param array $taxonomies Array of taxonomies to show columns for.561 * @param string $post_type The post type.560 * @param string[] $taxonomies Array of taxonomy names to show columns for. 561 * @param string $post_type The post type. 562 562 */ 563 563 $taxonomies = apply_filters( "manage_taxonomies_for_{$post_type}_columns", $taxonomies, $post_type ); … … 590 590 * @since 2.5.0 591 591 * 592 * @param array $post_columns An array of column names.592 * @param string[] $post_columns An associative array of column headings. 593 593 */ 594 594 $posts_columns = apply_filters( 'manage_pages_columns', $posts_columns ); … … 600 600 * @since 1.5.0 601 601 * 602 * @param array $posts_columns An array of column names.603 * @param string $post_typeThe post type slug.602 * @param string[] $post_columns An associative array of column headings. 603 * @param string $post_type The post type slug. 604 604 */ 605 605 $posts_columns = apply_filters( 'manage_posts_columns', $posts_columns, $post_type ); … … 613 613 * @since 3.0.0 614 614 * 615 * @param array $post_columns An array of column names.615 * @param string[] $post_columns An associative array of column headings. 616 616 */ 617 617 return apply_filters( "manage_{$post_type}_posts_columns", $posts_columns ); … … 1336 1336 * @since 2.8.0 1337 1337 * 1338 * @param array$actions An array of row action links. Defaults are1339 * 'Edit', 'Quick Edit', 'Restore', 'Trash',1340 * 'Delete Permanently', 'Preview', and 'View'.1341 * @param WP_Post $postThe post object.1338 * @param string[] $actions An array of row action links. Defaults are 1339 * 'Edit', 'Quick Edit', 'Restore', 'Trash', 1340 * 'Delete Permanently', 'Preview', and 'View'. 1341 * @param WP_Post $post The post object. 1342 1342 */ 1343 1343 $actions = apply_filters( 'page_row_actions', $actions, $post ); … … 1351 1351 * @since 2.8.0 1352 1352 * 1353 * @param array$actions An array of row action links. Defaults are1354 * 'Edit', 'Quick Edit', 'Restore', 'Trash',1355 * 'Delete Permanently', 'Preview', and 'View'.1356 * @param WP_Post $postThe post object.1353 * @param string[] $actions An array of row action links. Defaults are 1354 * 'Edit', 'Quick Edit', 'Restore', 'Trash', 1355 * 'Delete Permanently', 'Preview', and 'View'. 1356 * @param WP_Post $post The post object. 1357 1357 */ 1358 1358 $actions = apply_filters( 'post_row_actions', $actions, $post );
Note: See TracChangeset
for help on using the changeset viewer.