add_post_meta unique value for all custom posts
you can use the save_post hook to validate the uniqueness of email and phone fields before saving the post. Replace seller with your actual post type slug and add below code in functions.php file // Add custom meta box for Seller post type function add_seller_meta_box() { add_meta_box( ‘seller_meta_box’, ‘Seller Details’, ‘render_seller_meta_box’, ‘seller’, ‘normal’, ‘default’ ); … Read more