从类别页面的Wordpress网址

时间:2017-10-13 16:14:07

标签: php wordpress categories permalinks

当帖子有多个类别从类别页面链接时,我喜欢在url中使用当前类别名称。这是一个有效的例子:

global $post;
$cat = get_category( get_query_var( 'cat' ) );
$cat_slug = $cat->slug;
$post_slug = $post->post_name;

<?php echo get_site_url() . '/'.$cat_slug.'/'.$post_slug.'/'; ?>

但这是最好的解决方案吗?或者,还有更好的方法?还在学习......

(永久链接设置:/%category%/%postname%/和可选部分中的“。”)

0 个答案:

没有答案