diff --git a/docs/notes/theme/config/主题配置.md b/docs/notes/theme/config/主题配置.md
index bb752c41..64643f08 100644
--- a/docs/notes/theme/config/主题配置.md
+++ b/docs/notes/theme/config/主题配置.md
@@ -96,18 +96,47 @@ interface BlogOptions {
* @default true
*/
tags?: boolean
+
+ /**
+ * 自定义标签页链接
+ *
+ * @default '/blog/tags/'
+ */
+ tagsLink?: string
+
/**
* 是否启用归档页
* @default true
*/
archives?: boolean
+ /**
+ * 自定义归档页链接
+ *
+ * @default '/blog/archives/'
+ */
+ archivesLink?: string
+
/**
* 是否启用分类页
* @default true
*/
categories?: boolean
+ /**
+ * 自定义分类页链接
+ *
+ * @default '/blog/categories/'
+ */
+ categoriesLink?: string
+
+ /**
+ * 分类页展开深度
+ *
+ * @default 'deep'
+ */
+ categoriesExpand?: number | 'deep'
+
/**
* 博客文章封面图
*
diff --git a/theme/src/client/components/Blog/VPBlogCategories.vue b/theme/src/client/components/Blog/VPBlogCategories.vue
index 30f1782a..3d4e3c02 100644
--- a/theme/src/client/components/Blog/VPBlogCategories.vue
+++ b/theme/src/client/components/Blog/VPBlogCategories.vue
@@ -18,7 +18,7 @@ const { categories } = useBlogCategory()
- + {{ item.title }}
@@ -55,6 +70,7 @@ onMounted(() => { v-if="item.items.length" class="group" :items="item.items" + :depth="depth" />