ActionScheduler_AdminView_Deprecated::row_actions
Hide the inline "Edit" action for all 'scheduled-action' posts.
Hooked to the post_row_actions
Метод класса: ActionScheduler_AdminView_Deprecated{}
Хуков нет.
Возвращает
Массив. $actions An associative array of actions which can be performed on the 'scheduled-action' post type.
Использование
$result = ActionScheduler_AdminView_Deprecated::row_actions( $actions, $post );
- $actions(массив) (обязательный)
- An associative array of actions which can be performed on the 'scheduled-action' post type.
- $post(WP_Post) (обязательный)
- The 'scheduled-action' post object.
Код ActionScheduler_AdminView_Deprecated::row_actions() ActionScheduler AdminView Deprecated::row actions WC 10.3.4
public static function row_actions( $actions, $post ) {
_deprecated_function( __METHOD__, '2.0.0' );
return $actions;
}