获取post slug
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取post slug相关的知识,希望对你有一定的参考价值。
This function returns the slug fot the given post...
// @ WordPress // Returns the post slug // Make sure to use this inside the loop //---------------------------------------------------------- function the_slug($postID="") { global $post; $postID = ( $postID != "" ) ? $postID : $post->ID; $post_data = get_post($postID, ARRAY_A); $slug = $post_data['post_name']; return $slug; } //---------------------------------------------------------- // to display specific post/page slug add the post id parameter: <?php echo the_slug('23'); ?> // to get var: <?php $slug = the_slug(); ?> or <?php $slug = the_slug('23'); ?>
以上是关于获取post slug的主要内容,如果未能解决你的问题,请参考以下文章