PluginProbe
Yoast SEO – Advanced SEO with real-time guidance and built-in AI / 28.5
Yoast SEO – Advanced SEO with real-time guidance and built-in AI v28.5
28.5 28.4 28.3 28.2 28.1 28.0 27.9 27.8 27.7 27.6 27.5 trunk 18.0 18.1 18.2 18.3 18.4 18.4.1 18.5 18.5.1 18.6 18.7 18.8 18.9 19.0 All 129 releases
← All changes | admin/class-bulk-description-editor-list-table.php +7 -1 18.228.5 View file →
@@ -7,8 +7,11 @@
7 7 */
8 8
9 9 /**
10 10 * Implements table for bulk description editing.
11 + *
12 + * @deprecated 28.1
13 + * @codeCoverageIgnore
11 14 */
12 15 class WPSEO_Bulk_Description_List_Table extends WPSEO_Bulk_List_Table {
13 16
14 17 /**
@@ -38,8 +41,11 @@
38 41
39 42 /**
40 43 * The columns shown on the table.
41 44 *
45 + * @deprecated 28.1
46 + * @codeCoverageIgnore
47 + *
42 48 * @return array
43 49 */
44 50 public function get_columns() {
45 51 $columns = [
@@ -64,9 +70,9 @@
64 70 case 'col_new_yoast_seo_metadesc':
65 71 return sprintf(
66 72 '<textarea id="%1$s" name="%1$s" class="wpseo-new-metadesc" data-id="%2$s" aria-labelledby="col_new_yoast_seo_metadesc"></textarea>',
67 73 esc_attr( 'wpseo-new-metadesc-' . $record->ID ),
68 - esc_attr( $record->ID )
74 + esc_attr( $record->ID ),
69 75 );
70 76
71 77 case 'col_existing_yoast_seo_metadesc':
72 78 // @todo Inconsistent return/echo behavior R.