WPSEO_Bulk_Title_Editor_List_Table::get_columns()
The columns shown on the table.
Метод класса: WPSEO_Bulk_Title_Editor_List_Table{}
Хуков нет.
Возвращает
Массив
.
Использование
$WPSEO_Bulk_Title_Editor_List_Table = new WPSEO_Bulk_Title_Editor_List_Table(); $WPSEO_Bulk_Title_Editor_List_Table->get_columns();
Код WPSEO_Bulk_Title_Editor_List_Table::get_columns() WPSEO Bulk Title Editor List Table::get columns Yoast 23.7
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 ); }