How to get post slug from post in WordPress?

后端 未结 10 2192
我在风中等你
我在风中等你 2020-12-25 09:32

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?

10条回答
  •  孤城傲影
    2020-12-25 10:13

    Best option to do this according to WP Codex is as follow.

    Use the global variable $post:

    post_name;
    ?>
    

提交回复
热议问题