Page 1 of 1

Link a content to multiple categories

Posted: Sun Mar 29, 2026 9:31 pm
by randomuser
Hey,
Is it possible, natively or through a plugin, to link several categories to one content ?
I didn't find anything related on documentation or online.
Thanks for the info :)

Re: Link a content to multiple categories

Posted: Wed Apr 01, 2026 11:45 pm
by Edi
Perhaps a plugin could be coded.

As a fix you can do it manually.

You can modify the file categories.php in the directory /bl-content/databases.

In the following example the content "kategorien" (slug of the content) is listed in the categories "music" and "videos".

Code: Select all

<?php defined('BLUDIT') or die('Bludit CMS.'); ?>
{
    "general": {
        "name": "General",
        "description": "",
        "template": "",
        "list": [
            "veroeffentliche-deine-inhalte",
            "richte-deine-website-ein",
            "folge-bludit",
            "ueber"
        ]
    },
    "music": {
        "name": "Music",
        "description": "",
        "template": "",
        "list": [
           "kategorien"
		]
    },
    "videos": {
        "name": "Videos",
        "description": "",
        "template": "",
        "list": [
            "kategorien"
        ]
    }
}
Or what about using tags instead of categories?

Re: Link a content to multiple categories

Posted: Mon Apr 13, 2026 6:07 pm
by randomuser
Hello,

I'll see if I can do a plugin :) thanks for showing what would be the expected result.

"Or what about using tags instead of categories?"' => That's another idea, but AFAIK, it wouldn't (natively) allow being able to have a category/tag page showing all the articles belonging to this category/tag with tag system, no ?

Re: Link a content to multiple categories

Posted: Mon Apr 13, 2026 11:26 pm
by Edi
randomuser wrote: Mon Apr 13, 2026 6:07 pm That's another idea, but AFAIK, it wouldn't (natively) allow being able to have a category/tag page showing all the articles belonging to this category/tag with tag system, no ?
Also a tag page shows all articles with the tag.

Re: Link a content to multiple categories

Posted: Tue Apr 14, 2026 4:47 pm
by randomuser
Oh, okay, thanks for the info :)