Skip to content

Instantly share code, notes, and snippets.

@crawford252
Created March 4, 2024 18:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save crawford252/c77b62ab66b69494f58389e829bafb91 to your computer and use it in GitHub Desktop.
Save crawford252/c77b62ab66b69494f58389e829bafb91 to your computer and use it in GitHub Desktop.
Divi Change Projects Slug
<?php
function my_custom_projects_slug( $slug ) {
$slug = array( 'slug' => 'custom-slug' );
return $slug;
}
add_filter( 'et_project_posttype_rewrite_args', 'my_custom_projects_slug', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment