你已经把身份证贴在身上了。所以您可以使用这个自定义函数来检索任何帖子的slug。
function get_the_slug( $id=null ){
if( empty($id) ):
global $post;
if( empty($post) )
return \'\'; // No global $post var available.
$id = $post->ID;
endif;
$slug = basename( get_permalink($id) );
return $slug;
}
作为回报,这将为您提供指定post的slug,您可以将其作为参数传递。默认情况下,它将为您提供当前的slug post项。