How do I resolve Notice: Undefined offset: 0 in /wp-includes/capabilities.php on line 1145

That error is because you are not providing the post ID to check capabilities:

This line:

if( !current_user_can( 'edit_post' ) ) {

Should be:

if( !current_user_can( 'edit_post', $post_id ) ) {

Leave a Comment