How to Get the Post Slug
The post slug is the part of the URL of a post or page at the last section. E.g.: Page: https://wplancer.com/about/ Post: https://wplancer.com/2015/09/post-slug-here/ There are two ways to get the slug in WordPress inside the loop. The first way is to access the $post object that is available inside the loop. $slug = $post->post_name; The …