Skip to content

Instantly share code, notes, and snippets.

@seventhqueen
seventhqueen / pmpro-cpt.php
Last active January 15, 2018 16:06 — forked from strangerstudios/pmpro-cpt.php
Add the PMPro meta box to a CPT. Add this to your plugin/etc.
<?php
/*
Add the PMPro meta box to a CPT
*/
function my_sensei_course_meta_wrapper()
{
//duplicate this row for each CPT
add_meta_box('pmpro_page_meta', 'Require Membership', 'pmpro_page_meta', 'course', 'side');
}
function pmpro_cpt_init()