How to disable edit post option? [closed]
This will restrict all users, except admins to edit a post after one day. You can, however, change the allowed user roles or time by simply tweaking the code. function wpse405644_restrict_editing() { $screen = get_current_screen(); if ( $screen->base == ‘post’ && $screen->post_type == ‘courses’ ) { $post = get_post($_GET[‘post’]); $user = wp_get_current_user(); if ( !in_array( … Read more