Skip to content

Instantly share code, notes, and snippets.

@albionselimaj
Created March 11, 2018 15:02
Show Gist options
  • Save albionselimaj/15aef3e8ad89b08cf8621b78650c3935 to your computer and use it in GitHub Desktop.
Save albionselimaj/15aef3e8ad89b08cf8621b78650c3935 to your computer and use it in GitHub Desktop.
Override WPJM templates
<?php
add_filter( 'job_manager_locate_template', function( $template, $template_name, $template_path ) {
return locate_template( "job_manager/templates/{$template_name}" ) ? : $template;
}, 100, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment