WPSEO_Bulk_Description_List_Table::get_columns()publicYoast 1.0

The columns shown on the table.

Метод класса: WPSEO_Bulk_Description_List_Table{}

Хуков нет.

Возвращает

Массив.

Использование

$WPSEO_Bulk_Description_List_Table = new WPSEO_Bulk_Description_List_Table();
$WPSEO_Bulk_Description_List_Table->get_columns();

Код WPSEO_Bulk_Description_List_Table::get_columns() Yoast 22.4

public function get_columns() {
	$columns = [
		'col_existing_yoast_seo_metadesc' => __( 'Existing Yoast Meta Description', 'wordpress-seo' ),
		'col_new_yoast_seo_metadesc'      => __( 'New Yoast Meta Description', 'wordpress-seo' ),
	];

	return $this->merge_columns( $columns );
}