スラッグ名の取得方法

<?php
//①get_pageを利用して情報を得る
$page = get_page(get_the_ID());
//②プロパティからスラッグ名を取得する
$slug = $page->post_name;
?>