1. Home
  2. Developer
  3. Code Snippets
  4. Remove taxonomy links in the job meta

Remove taxonomy links in the job meta

My default Matador Jobs links the taxonomy achieve pages when a taxonomy is included in a job description meta.

To change this behaviour, add this code snippet to your site (in child theme functions.php)

add_filter( 'matador_get_the_job_meta_taxonomy_args', function( $args ) {
	
    $args['link']= false;

	return $args;
});

Updated on January 9, 2023
Was this article helpful?

Related Articles

Need Support?
Can't find the answer you're looking for?
Contact Support