05/24/2014 at 2:13 pm
#291991
Keymaster
@ Eric
I add two new action which you can hook into to output the instructions. Here’s snippet that will work with the beta of Link:
add_action( 'cnl_admin_before_metaboxes', 'cnl_custom_content_before' );
function cnl_custom_content_before( $action ) {
switch ( $action ) {
case 'add':
echo '<div><p>Special Instructions when adding an entry</p></div>';
break;
case 'edit':
echo '<div><p>Special Instructions when editing an entry</p></div>';
break;
}
}
