如何在模板中获得自定义post类型的重写slug?
register_post_type( \'products\',
\'rewrite\' => array( \'slug\' => \'fabrications\' ),
// ... etc
);
现在在我的模板文件中global $post
有post\\u type属性。但我找不到rewrite slug
在任何地方请帮忙。
Update: 我需要在模板部件中显示类别的永久链接。
<a href="<?php echo get_site_url() . \'/\' . $post_type_slug . \'/category/\' . $category->slug . \'/\' ?>" class="cat-bar__label"><?php echo $category->name; ?></a>