如何从WordPress的文章中获取文章slug?

9 浏览
0 Comments

如何从WordPress的文章中获取文章slug?

我想从 http://example.com/project_name/abc_15_11_02_3/ 获取 \"abc_15_11_02_3\"。怎么做呢?

admin 更改状态以发布 2023年5月23日
0
0 Comments

如果你想从循环中获取文章的slug,那么使用:

global $post;
echo $post->post_name;


如果你想从循环以外获取文章的slug,那么使用:

$post_id = 45; //specify post id here
$post = get_post($post_id); 
$slug = $post->post_name;

0
0 Comments

您可以使用以下方法获得它:


或者您可以使用这个简单的代码:

post_name;
?>

0