WordPress 获取指定ID或当前文章别名的方法

WordPress 可以通过 the_title() 函数获取文章标题,但是却找不到能直接获取文章别名的 wo…

WordPress 可以通过 the_title() 函数获取文章标题,但是却找不到能直接获取文章别名的 wordpress 函数,所以要想调用文章别名就只能编写调用函数了,代码比较简单。

把下面的代码放在主题的 functions.php 文件:

  1. function the_slug($postid = null) {
  2.     if($postid == 'null') $postid = $post->ID;
  3.     $postData = get_post($postid, ARRAY_A);
  4.     $post_slug = $postData['post_name'];
  5.     return $post_slug; 
  6. }

在 single.php 调用当前文章的别名:

  1. <?php echo the_slug();?>

调用指定文章 ID 为 20 的文章别名

  1. <?php echo the_slug(20);?>

上面的代码也适用于获取单篇页面的别名。

类别:WordPress教程

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册