获取WP页Slug

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取WP页Slug相关的知识,希望对你有一定的参考价值。

Function to get wordpress post/page slug to be used on for custom class etc
  1. // Put in Functions.php
  2.  
  3. function the_slug() {
  4. $post_data = get_post($post->ID, ARRAY_A);
  5. $slug = $post_data['post_name'];
  6. return $slug; }
  7.  
  8. // Put where you want to show in page or single etc. Use for custom class for each page
  9.  
  10. <?php echo the_slug(); ?>

以上是关于获取WP页Slug的主要内容,如果未能解决你的问题,请参考以下文章