This file contains hidden or 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 | |
/* | |
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() |