Automatically Update Permalinks
When this plugin is activated and the title of a post or page is changed, the permalink (slug) of the post or page is automatically updated to reflect the new title. There is an option to disable this functionality on a one-time basis when saving. If you like this plugin, please consider leaving a comment or review. You may also like these plugins WP Zone has built a bunch of plugins, add-ons, and themes. Check out other favorites here on the repository and don’t forget to leave a 5-star review to help others in the community decide. Product Sales Report for WooCommerce – setup a custom sales report for the products in your WooCommerce store with toggle sorting options. Including or excluding items based on date range, sale status, product category and id, define display order, choose what fields to include, and generate your report with a click. Export Order Items for WooCommerce – export the order details for each sale in your WooCommerce store. Simplify order fulfillment, generate accounting reports in a few clicks, and download into CSV format for readability and universal compatibility with Export Order Items. Replace Image – keep the same URL when uploading to the WordPress media library Force Update Check for Plugins and Themes -force Update Check for Plugins and Themes forces WordPress to run a theme and plugin update check whenever you visit the WordPress updates page Connect SendGrid for Emails – connect SendGrid for Emails is a third-party fork of (and a drop-in replacement for) the official SendGrid plugin Custom CSS and JavaScript – allows you to add custom site-wide CSS styles and JavaScript code to your WordPress site. Useful for overriding your theme’s styles and adding client-side functionality. Disable User Registration Notification Emails – when this plugin is activated, it disables the notification sent to the admin email when a new user account is registered. Inline Image Upload for BBPress – enables the TinyMCE WYSIWYG editor for BBPress forum topics and replies and adds a button to the editor’s “Insert/edit image” dialog that allows forum users to upload images from their computer and insert them inline into their posts. Password Strength for WooCommerce – disables password strength enforcement in WooCommerce. Potent Donations for WooCommerce – acceptance donations through your WooCommerce store Shortcodes for Divi – allows to use Divi Library layouts as shortcodes everywhere where text comes. Stock Export and Import for WooCommerce – generates reports on the stock status (in stock / out of stock) and quantity of individual WooCommerce products. Random Quiz Generator for LifterLMS – pull a random set of questions from your quiz so users never get the same question twice when retaking or setting up a practice quiz. WP and Divi Icons – adds over 660 custom outline SVG icons to your website. SVG icons are vector icons, so they are sharp and look good on any screen at any size. WP Layouts – the best way to organize, import, and export your layouts, especially if you have multiple websites. WP Squish – reduce the amount of storage space consumed by your WordPress installation through the application of user-definable JPEG compression levels and image resolution limits to uploaded images. To view WP Zone’s premium WordPress plugins and themes, visit our WordPress products catalog page
Top keywords
- woocommerce10×1.86%
- wordpress7×1.30%
- export5×0.93%
- order5×0.93%
- wp5×0.93%
- check4×0.74%
- custom4×0.74%
- icons4×0.74%
- image4×0.74%
- page4×0.74%
- stock4×0.74%
- themes4×0.74%
Custom Permalink Editor
Custom Permalink Editor is a powerful yet simple plugin that allows you to create SEO-friendly custom URLs for your WordPress posts and pages. Perfect for content creators, marketers, and site owners who want complete control over their permalink structure. Key Features: ✓ Easy Permalink Customization – Change URLs for individual posts and pages with just a few clicks ✓ SEO-Friendly URLs – Create clean, readable URLs that improve your search engine rankings ✓ No Global Changes – Customize permalinks per post/page without affecting your site’s default permalink structure ✓ Safe & Reversible – Deactivating the plugin reverts all posts back to their default WordPress permalinks ✓ Categories & Tags Support – Edit permalinks for categories and tags as well ✓ Custom Post Type Support – Existing custom permalinks for custom post types continue to work (Pro version required for editing) How It Works: Install and activate the plugin Edit any post or page Find the Custom Permalink Editor box Enter your desired custom URL Save and publish – your new permalink is live! Perfect For: Blog posts with specific keyword requirements Landing pages with marketing-friendly URLs Portfolio items with branded permalinks Product pages with clean, memorable URLs Migrating content from other platforms while maintaining URL structure Support Need help or have questions? We’re here to assist you! Support Requests: Use our contact form for technical support Custom Modifications: Contact us for any custom development needs Feedback: We value your feedback and suggestions for improvements Pro Version: Interested in premium features? Get in touch Privacy Policy This plugin does not collect any user Information If you need any custom modification or any other thing contact with https://kingscrestglobal.com/ and mention Custom Permalink Editor Advanced Filters For developers who need more control, Custom Permalink Editor provides several filters to customize its behavior. Add PATH_INFO in $_SERVER Variable Enable PATH_INFO support in the $_SERVER variable. This is useful for certain server configurations. Usage: add_filter( 'cp_editor_path_info', '__return_true' ); Exclude Specific Permalinks Prevent specific permalinks from being processed by the plugin. Useful for excluding system files like sitemaps or special pages. Example: Exclude sitemap.xml from processing function team_kcg_exclude_permalink( $permalink ) { // Check if permalink contains 'sitemap.xml' if ( false !== strpos( $permalink, 'sitemap.xml' ) ) { return '__true'; } return; } add_filter( 'cp_editor_exclude_permalink', 'team_kcg_exclude_permalink' ); Exclude Specific Post Types Remove the Custom Permalink Editor form from specific post types. Helpful if you want to disable the feature for certain content types. Example: Exclude a custom post type called ‘custompost’ function team_kcg_exclude_post_type( $post_type ) { // Replace 'custompost' with your actual post type name if ( 'custompost' === $post_type ) { return '__true'; } return '__false'; } add_filter( 'cp_editor_exclude_post_type', 'team_kcg_exclude_post_type' ); Exclude Specific Posts Exclude individual posts or pages from showing the Custom Permalink Editor form. You can filter by ID, template, or any post property. Example: Exclude post with ID 1557 function team_kcg_exclude_posts( $post ) { // Exclude specific post by ID if ( 1557 === $post->ID ) { return true; } // You can also exclude by other criteria // Example: Exclude posts with a specific template // if ( get_page_template_slug( $post->ID ) === 'template-landing.php' ) { // return true; // } return false; } add_filter( 'cp_editor_exclude_posts', 'team_kcg_exclude_posts' ); Allow Accented Characters By default, the plugin removes accents from permalinks for better URL compatibility. Enable this filter if you need to preserve accented characters. Usage: function team_kcg_allow_accents() { return true; } add_filter( 'cp_editor_allow_accents', 'team_kcg_allow_accents' ); Allow Capital Letters By default, permalinks are converted to lowercase. Use this filter to preserve capital letters in your custom URLs. Usage: function team_kcg_allow_capitals() { return true; } add_filter( 'cp_editor_allow_caps', 'team_kcg_allow_capitals' ); Note: Add these code snippets to your theme’s functions.php file or use a custom plugin/code snippets plugin. How To Use Changing a Post or Page Permalink: Navigate to Posts > All Posts (or Pages > All Pages) Click on the post/page you want to edit Scroll down to find the “Custom Permalink Editor” meta box Enter your desired custom URL in the text field (without the domain) Click “Update” or “Publish” to save your changes Visit your post to see the new permalink in action! Example: – Default URL: yoursite.com/2026/01/11/my-blog-post/ – Custom URL: yoursite.com/seo-friendly-custom-url/ Reverting to Default Permalinks: Simply deactivate the plugin and all posts will automatically revert to WordPress default permalink structure.