WordPress 获取指定ID或当前文章别名的方法
WordPress 可以通过 the_title() 函数获取文章标题,但是却找不到能直接获取文章别名的 wo…
WordPress 可以通过 the_title() 函数获取文章标题,但是却找不到能直接获取文章别名的 wordpress 函数,所以要想调用文章别名就只能编写调用函数了,代码比较简单。
把下面的代码放在主题的 functions.php 文件:
-
function the_slug($postid = null) {
-
if($postid == 'null') $postid = $post->ID;
-
$postData = get_post($postid, ARRAY_A);
-
$post_slug = $postData['post_name'];
-
return $post_slug;
-
}
在 single.php 调用当前文章的别名:
-
<?php echo the_slug();?>
调用指定文章 ID 为 20 的文章别名
-
<?php echo the_slug(20);?>
上面的代码也适用于获取单篇页面的别名。
类别:WordPress教程、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
还没有任何评论,赶紧来占个楼吧!