How to get post slug from post in WordPress?

user1990 picture user1990 · Nov 21, 2015 · Viewed 128.8k times · Source

I want to get "abc_15_11_02_3" from http://example.com/project_name/abc_15_11_02_3/. How can i do this?

Answer

Keyur Patel picture Keyur Patel · Nov 21, 2015

You can get that using the following methods:

<?php $post_slug = get_post_field( 'post_name', get_post() ); ?>

Or You can use this easy code:

<?php
    global $post;
    $post_slug = $post->post_name;
?>