Adding a metabox shortcode “paypal accept payment” in my custom post type back-end
Add this to your child theme / plugin functions.php. I think this should do the trick. Let me know function your_meta_callback( $post ) { echo Paypal_payment_accept(); } add_meta_box( ‘your_meta’, __( ‘Meta Box Title’, ‘your-textdomain’ ), ‘your_meta_callback’, ‘your-posttype-name’, ‘side’ ); For more information see WordPress Codex on add_meta_box(). Update: Ok I have looked into this. If … Read more