Skip to content

Instantly share code, notes, and snippets.

@tripflex
Created January 31, 2025 20:47
Show Gist options
  • Save tripflex/7924804de5fabedf2cc58d2c7d0cdf2e to your computer and use it in GitHub Desktop.
Save tripflex/7924804de5fabedf2cc58d2c7d0cdf2e to your computer and use it in GitHub Desktop.
Prevent WP Job Manager Resumes from Translating the resume slug in the URL
<?php
add_filter('register_post_type_resume', 'modify_resume_rewrite_slug', 99, 1);
function modify_resume_rewrite_slug($args) {
// don't translate the value
$args['rewrite']['slug'] = 'resume';
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment