我需要链接到我的 wordpress 网站中的一个类别。以下代码在某种程度上有效:
<?php
// Get the ID of a given category
$category_id = get_cat_ID( 'People' );
// Get the URL of this category
$category_link = get_category_link( $category_id );
?>
我的问题是它在 url 中包含 /category/,这不是我的永久链接结构的设计方式。有谁知道在它输出的 url 中包含 /category/ 的方法?