Noptin_Automation_Rules_Table::get_sortable_columns()
Table sortable columns.
Return Return
(array)
Source Source
File: includes/automation-rules/class-noptin-automation-rules-table.php
public function get_sortable_columns() { $sortable = array( 'id' => array( 'id', true ), ); /** * Filters the sortable columns in the automation rules table. * * @param array $sortable An array of sortable columns. */ return apply_filters( 'manage_noptin_automation_rules_sortable_table_columns', $sortable ); }
Expand full source code Collapse full source code View on GitHub