Skip to content

Instantly share code, notes, and snippets.

@kraftbj
Created March 9, 2016 16:43
Show Gist options
  • Save kraftbj/0220bb153a76c47fea2e to your computer and use it in GitHub Desktop.
Save kraftbj/0220bb153a76c47fea2e to your computer and use it in GitHub Desktop.
Add Publicize support for WPJM Job Listings
<?php
/*
Plugin Name: WP Job Manager - Publicize using Jetpack
Plugin URI: https://kraft.im/
Description: Use Jetpack's Publicize feature with WP Job Manager listings.
Author: Brandon Kraft
Author URI: https://kraft.im/
Version: 1.0
License: GPL 2+
*/
function add_publicize_to_wpjm_listings() {
add_post_type_support( 'job_listing', 'publicize' );
}
add_action( 'init', 'add_publicize_to_wpjm_listings' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment