获取WP页Slug
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取WP页Slug相关的知识,希望对你有一定的参考价值。
Function to get wordpress post/page slug to be used on for custom class etc
// Put in Functions.php function the_slug() { $post_data = get_post($post->ID, ARRAY_A); $slug = $post_data['post_name']; return $slug; } // Put where you want to show in page or single etc. Use for custom class for each page <?php echo the_slug(); ?>
以上是关于获取WP页Slug的主要内容,如果未能解决你的问题,请参考以下文章
通过其 slug 获取 WooCommerce 产品类别的 id
如何在不影响其他帖子类型的情况下修改默认 WP 帖子的 slug?
Wordpress - 如何通过 slug 获取自定义帖子类型?