通常,答案取决于您的
$permalinks = get_option( \'permalink_structure\' )
如果没有返回
false
, 然后启用了永久链接。然后,您可以检查您的设置并从中构建精确的链接。
然后,您可以简单地提取所需的列表/对象部分并构建链接。
// Maybe you want them for the labels?
$cat_names = wp_list_pluck( get_the_category( get_the_ID() ), \'name\' );
// For nice permalinks
$cat_slugs = wp_list_pluck( get_the_category( get_the_ID() ), \'slug\' );
// For non-beautiful permalink sites
$cat_IDs = wp_list_pluck( get_the_category( get_the_ID() ), \'term_id\' );
由于我不知道您将如何对它们进行排序/排序,也不知道您的具体目标是什么,因此我无法为您提供解决方案,只需确定下一个/上一个类别,然后建立链接:
printf(
\'<a href="%1$s" title="%2$s">%2$s</a>\'
,home_url( \'/\' ) // Append your link inside the single quotes after the slash
,$cat_name[0] // Set your next/prev cat here
);