Register Now! – Soft Skill Workshop

Name

Gender

Email

Phone Number

Age

Highest Education

Address

Success

Your form submitted successfully!

Error

Sorry! your form was not submitted properly, Please check the errors above.

<?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'
    ));
});
?>