X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/784f914b1e4b1c62d6657e86397c2e83bcee4295..607b7e02d77e7326161e8ec15639052d2040f745:/wp-admin/includes/class-wp-terms-list-table.php diff --git a/wp-admin/includes/class-wp-terms-list-table.php b/wp-admin/includes/class-wp-terms-list-table.php index 7da91a23..e765794a 100644 --- a/wp-admin/includes/class-wp-terms-list-table.php +++ b/wp-admin/includes/class-wp-terms-list-table.php @@ -53,7 +53,7 @@ class WP_Terms_List_Table extends WP_List_Table { $taxonomy = 'post_tag'; if ( ! taxonomy_exists( $taxonomy ) ) - wp_die( __( 'Invalid taxonomy' ) ); + wp_die( __( 'Invalid taxonomy.' ) ); $tax = get_taxonomy( $taxonomy ); @@ -79,7 +79,7 @@ class WP_Terms_List_Table extends WP_List_Table { if ( 'post_tag' === $this->screen->taxonomy ) { /** - * Filter the number of terms displayed per page for the Tags list table. + * Filters the number of terms displayed per page for the Tags list table. * * @since 2.8.0 * @@ -88,7 +88,7 @@ class WP_Terms_List_Table extends WP_List_Table { $tags_per_page = apply_filters( 'edit_tags_per_page', $tags_per_page ); /** - * Filter the number of terms displayed per page for the Tags list table. + * Filters the number of terms displayed per page for the Tags list table. * * @since 2.7.0 * @deprecated 2.8.0 Use edit_tags_per_page instead. @@ -98,7 +98,7 @@ class WP_Terms_List_Table extends WP_List_Table { $tags_per_page = apply_filters( 'tagsperpage', $tags_per_page ); } elseif ( 'category' === $this->screen->taxonomy ) { /** - * Filter the number of terms displayed per page for the Categories list table. + * Filters the number of terms displayed per page for the Categories list table. * * @since 2.8.0 * @@ -351,7 +351,7 @@ class WP_Terms_List_Table extends WP_List_Table { $pad = str_repeat( '— ', max( 0, $this->level ) ); /** - * Filter display of the term name in the terms list table. + * Filters display of the term name in the terms list table. * * The default output may include padding due to the term's * current level in the term hierarchy. @@ -469,7 +469,7 @@ class WP_Terms_List_Table extends WP_List_Table { } /** - * Filter the action links displayed for each term in the Tags list table. + * Filters the action links displayed for each term in the Tags list table. * * @since 2.8.0 * @deprecated 3.0.0 Use {$taxonomy}_row_actions instead. @@ -481,7 +481,7 @@ class WP_Terms_List_Table extends WP_List_Table { $actions = apply_filters( 'tag_row_actions', $actions, $tag ); /** - * Filter the action links displayed for each term in the terms list table. + * Filters the action links displayed for each term in the terms list table. * * The dynamic portion of the hook name, `$taxonomy`, refers to the taxonomy slug. * @@ -559,7 +559,7 @@ class WP_Terms_List_Table extends WP_List_Table { */ public function column_default( $tag, $column_name ) { /** - * Filter the displayed columns in the terms list table. + * Filters the displayed columns in the terms list table. * * The dynamic portion of the hook name, `$this->screen->taxonomy`, * refers to the slug of the current taxonomy.