在WordPress中,要获取文章所属的第一个分类的链接,可以使用以下代码:,,``php,$post = get_post(); // 获取当前文章对象,$categories = get_the_category($post->ID); // 获取文章的所有分类,$first_catego……