feat(tags): this adds support for post, link, book, show and movie tags with a tag list view and per tag pages
This commit is contained in:
parent
3d866262ca
commit
6fdc0b56b9
35 changed files with 500 additions and 70 deletions
|
@ -39,6 +39,10 @@ WITH sitemap_data AS (
|
|||
ss.slug AS url
|
||||
FROM
|
||||
static_slugs ss
|
||||
UNION ALL
|
||||
SELECT CONCAT('/tags/', LOWER(REPLACE(tag, ' ', '-'))) AS url
|
||||
FROM optimized_all_tags
|
||||
WHERE tag IS NOT NULL AND TRIM(tag) <> ''
|
||||
)
|
||||
SELECT
|
||||
url
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue