Your cart is currently empty!
<?php
add_action('init', function() {
register_post_type('payment_record', array(
'labels' => array(
'name' => 'Payment Records',
'singular_name' => 'Payment Record'
),
'public' => false,
'show_ui' => true,
'supports' => array('title', 'editor'),
'menu_icon' => 'dashicons-money-alt'
));
});
?>
