Created
January 31, 2025 20:47
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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