ActionScheduler_AdminView_Deprecated::row_actions() public WC 1.0
Hide the inline "Edit" action for all 'scheduled-action' posts.
Hooked to the 'post_row_actions' filter.
{} It's a method of the class: ActionScheduler_AdminView_Deprecated{}
No Hooks.
Return
Array. $actions An associative array of actions which can be performed on the 'scheduled-action' post type.
Usage
$result = ActionScheduler_AdminView_Deprecated::row_actions( $actions, $post );
- $actions(array) (required)
- An associative array of actions which can be performed on the 'scheduled-action' post type.
- $post (required)
- -
Code of ActionScheduler_AdminView_Deprecated::row_actions() ActionScheduler AdminView Deprecated::row actions WC 5.0.0
public static function row_actions( $actions, $post ) {
_deprecated_function( __METHOD__, '2.0.0' );
return $actions;
}