WP_Application_Passwords_List_Table::get_default_primary_column_name() protected WP 5.6.0
Gets the name of the default primary column.
{} Это метод класса: WP_Application_Passwords_List_Table{}
Хуков нет.
Возвращает
Строку. Name of the default primary column, in this case, 'name'.
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->get_default_primary_column_name();
Список изменений
С версии 5.6.0 | Введена. |
Код WP_Application_Passwords_List_Table::get_default_primary_column_name() WP Application Passwords List Table::get default primary column name WP 5.6.2
protected function get_default_primary_column_name() {
return 'name';
}