strapi-plugin-seo-slug
v1.3.1
Published
Slug is a custom field for Strapi v5 that generates clean, SEO-friendly slugs with stopword trimming.
Maintainers
Readme
Strapi Plugin - SEO Slug (Strapi v5)
🔌 A custom field plugin built for Strapi v5 that helps generate clean, SEO-friendly slugs based on another field in your content type.
Features
- Strapi v5 Compatible
- 🔗 Adds a custom field named SEO Slug
- 🔤 Auto-generates slugs based on another field
- ✂️ Optionally strips SEO stopwords (like “the”, “of”, “a”, etc.)
- 🔢 Supports maximum character limit
Screenshots
Content Manager View
The SEO Slug field (Slug) is auto-generated from PageTitle and updates in real-time.

Field Configuration - Basic Settings
Choose the source field for slug generation.

Field Configuration - Advanced Settings
Enable stopword removal and set maximum slug length.

Installation
npm install strapi-plugin-seo-slugConfiguration
Enable the plugin
The plugin configuration is stored in a config file located at ./config/plugins.js. If this file doesn't exists, you will need to create it.
A sample configuration
export default ({ env }) => ({
"strapi-plugin-seo-slug": {
enabled: true,
}
});