From e6cef37e0c782fe770db20888d99c17d10e2c479 Mon Sep 17 00:00:00 2001 From: Thomas Lange Date: Thu, 1 Jul 2021 20:11:34 +0200 Subject: Add category system to categorize posts (readme) This commit implements a new category system to categorize posts. Each category can have an unlimited number of nested children categories. A single post don't necessarily need to be in a category, but it can. Each category can have a full content body like posts or pages, so you have enough space to describe the content of your categories. Please note that you need to have at least the following MySQL/MariaDB versions to use the category system, because it uses "WITH RECURSIVE" database queries, the so-called "Common-Table-Expressions (CTE)". MariaDB: 10.2.2 MySQL: 8.0 See: https://mariadb.com/kb/en/with/ See: https://dev.mysql.com/doc/refman/8.0/en/with.html --- theme/default/html/main.php | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'theme/default/html/main.php') diff --git a/theme/default/html/main.php b/theme/default/html/main.php index e84618b..5a067ef 100644 --- a/theme/default/html/main.php +++ b/theme/default/html/main.php @@ -73,6 +73,11 @@ $BLOGMETA_DESC = escapeHTML($BLOGMETA['DESC']); text('posts')?> +
  • + + text('categories')?> + +
  • text('pages')?> -- cgit v1.2.3