Skip to content

Instantly share code, notes, and snippets.

@tripflex
Created November 26, 2024 23:13
Show Gist options
  • Save tripflex/75542f7e556979c3a27d54404c075930 to your computer and use it in GitHub Desktop.
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+)
<?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