wp not making CPT permalink / slugs unique
wp not making CPT permalink / slugs unique
wp not making CPT permalink / slugs unique
have a look at the plugin https://wordpress.org/plugins/r3df-multisite-blog-slug-remover/ this removes the main site /blog slug.
get_permalink returning site home url instead of the url of slug being passed
How to include sub directory in sitemap? [closed]
Maybe that is what you are looking for: https://wordpress.org/plugins/permalinks-customizer/
Custom permalink leads to index page
I got an answer on the WordPress forums. Here is the working code for those looking to do something similar: add_filter( ‘post_type_link’, ‘change_webinar_links’, 10, 2 ); function change_webinar_links( $link, $post) { if ( $post->post_type == ‘tribe_events’ && tribe_event_in_category(‘webinar’) ) { $link = trailingslashit( home_url(‘/webinars/’ . $post->post_name ) ); } return $link; } add_action( ‘init’, ‘webinar_rewrite_rule’, … Read more
WordPress disallows changing page to a specific permalink
How to get functions.php work with postname permalink?
Have a look at this https://kellenmace.com/remove-custom-post-type-slug-from-permalinks/ I use it with this plugin: Code Snippets By Shea Bunge This allows you to modify your functions.php file without having to directly edit it. This means WordPress core and theme updates won’t remove your changes. Finally, may I suggest you try using a staging plugin to make a … Read more