base != 'settings_page_deepl_settings' ) {
return;
}
?>
post_type, $post_types )) {
// Build your links URL.
$url = admin_url( 'admin.php?page=mycpt_page&post=' . $post->ID );
// Maybe put in some extra arguments based on the post status.
$edit_link = add_query_arg( array( 'action' => 'edit' ), $url );
// The default $actions passed has the Edit, Quick-edit and Trash links.
$actions['translate'] = sprintf(
'%2$s',
esc_url( $edit_link ),
'Test'
);
}
plouf( $actions );
return $actions;
}