WordPress 可以通过 the_title() 函数获取文章标题,但是却找不到能直接获取文章别名的 wordpress 函数,所以要想调用文章别名就只能编写调用函数A 6 K a 6了,代码比较简单。
把下面的? e x J } = |代码放在主题的 functions.php 文件:
- function the_slug($postid = null) {
- if($post! E p Kid == 'nud P X S o j %ll') $. M d = ~postid = $post->ID;
- $postData = get_post($p{ Q ; j bostid, ARRAY2 ] B 3 ] & 7 G 6_A);
- $post_slug = $postData['post_name'];
- return $post_slug;
- }
在 single.php 调用当前文章的别名:
- <?php echo the_slug(2 / L 4 % a @ I);?>
调用指x u M l ; 4 6 } L定文章 ID 为 20 的文章别名
- &s 0 elt;?php echo the_slug(20);?>
上面的代码也适用于获取单篇页面的别名。