Created
November 26, 2024 23:13
-
-
Save tripflex/75542f7e556979c3a27d54404c075930 to your computer and use it in GitHub Desktop.
Job URL apply type custom URL for not logged in users (when using WP Job Manager Packages 1.3.5+)
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( 'job_manager_packages_job_application_url_type_packages_permalink_not_logged_in', function( $url ) { | |
return 'https://domain.com/please-register'; // Replace with your desired URL | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment