获取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的主要内容,如果未能解决你的问题,请参考以下文章

通过其 slug 获取 WooCommerce 产品类别的 id

Wordpress获取页面slug

如何在不影响其他帖子类型的情况下修改默认 WP 帖子的 slug?

Wordpress - 如何通过 slug 获取自定义帖子类型?

如何使用 wp_insert_post 在 wordpress 中设置 POST 永久链接/slug

WP:获取父子页计数