WordPress获取父slug

Posted

tags:

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

This is a really short function you can use inside The Loop to get the parent page slug (useful to add to the body classes or something)
  1. function get_parent_slug(){
  2. $parent = get_page($post->post_parent);
  3. return $parent->post_name;
  4. }

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

Wordpress - 通过 slug 获取标签 ID

用于 WordPress 的 PHP 片段,用于获取所有产品子类别

Wordpress获取类别Slug

Wordpress:如何在标签页面上获取标签的 slug

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

php Wordpress通过slug获取ID