WordPress 可以通过 the_title() 函数获取文章标题,但是却找不到能直接获取文章别名的 wordpress 函数,所以要想调用文章别名就只能编写调用函数了,代码比较简单。
把下面的代码放在主题的 functions.php 文件:
- function the_slug($postid = null) {
- ifE R - # Y | R @ J40;$postid == 'null') $postid = $post->ID;
- $postData = get_post($postid, ARRAY_A);
- $post_slug = $postData['post_name'];
- return $post_slug;W k E ^ ? M R r
- }
在 single.php 调用当前文章的别名:
- <?w 3 E 7 =php echo the_) } \ t 1 J Z & Qslug();?& z k ! | S F>
调用指定文章 ID 为 20 的文章l S q别名
- <?php echo the_slug(20);?>
上面的U v | : o 6 #代码也适用于获取单篇页面的别名。