You appear to be a bot. Output may be restricted
Description
The columns shown on the table.
Usage
$array = WPSEO_Bulk_Title_Editor_List_Table::get_columns();
Parameters
Returns
array
Source
File name: wordpress-seo/admin/class-bulk-title-editor-list-table.php
Lines:
1 to 11 of 11
public function get_columns() { $columns = [ /* translators: %1$s expands to Yoast SEO */ 'col_existing_yoast_seo_title' => sprintf( __( 'Existing %1$s Title', 'wordpress-seo' ), 'Yoast SEO' ), /* translators: %1$s expands to Yoast SEO */ 'col_new_yoast_seo_title' => sprintf( __( 'New %1$s Title', 'wordpress-seo' ), 'Yoast SEO' ), ]; return $this->merge_columns( $columns ); }