]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/includes/class-wp-terms-list-table.php
Wordpress 4.6
[autoinstalls/wordpress.git] / wp-admin / includes / class-wp-terms-list-table.php
index 7da91a23e1279686ecb695081fad567dabf3ec85..e765794a4e0589ea628fe3ce1716ac6f62229a7a 100644 (file)
@@ -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.