Skip to content

Instantly share code, notes, and snippets.

@code-flow
Created April 9, 2019 20:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save code-flow/d22e1dca56c2c9d44ad8aa1f2353714e to your computer and use it in GitHub Desktop.
Save code-flow/d22e1dca56c2c9d44ad8aa1f2353714e to your computer and use it in GitHub Desktop.
WP Job Manager Structured Data Deactivator
<?php
/*
Plugin Name: WP Job Manager Structured Data Deactivator
Description: Turns Structured Data OFF for the WP Job Manager Plugin.
Author: wpbuddy
Version: 0.1.0
Author URI: https://rich-snippets.io/wp-job-manager/
Plugin URI: https://rich-snippets.io
*/
add_filter( 'wpjm_get_job_listing_structured_data', function ( $data ) {
return '';
} );
@code-flow
Copy link
Author

This will remove the Structured Data generated by the WP Job Manager Plugin for WordPress. See the following post: https://rich-snippets.io/wp-job-manager/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment