Wordpress - How can I get page slug
Another option is getting the slug by post ID:
$slug = get_post_field( 'post_name', $post_id );
Here is more info about get_post_field
https://codex.wordpress.org/Function_Reference/get_post_field
Inside of your loop you can do:
global $post;
echo $post->post_name;
Outside the loop:
<?php
$post_id = 11;
$post = get_post($post_id);
$slug = $post->post_name;
?>