Created
March 9, 2016 16:43
-
-
Save kraftbj/0220bb153a76c47fea2e to your computer and use it in GitHub Desktop.
Add Publicize support for WPJM Job Listings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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