function limit_user_posts_per_day($data, $postarr) { if (is_user_logged_in() && $data['post_status'] == 'publish') { $user_id = get_current_user_id(); // Get today's date $today = date('Y-m-d'); // Count published posts today by user $args = array( 'author' => $user_id, 'post_type' => 'post', // ya custom post type 'post_status' => 'publish', 'date_query' => array( array( 'year' => date('Y', strtotime($today)), 'month' => date('m', strtotime($today)), 'day' => date('d', strtotime($today)), ), ), ); $query = new WP_Query($args); if ($query->found_posts >= 1) { // Agar ek post se zyada hai, to publish na hone dein wp_die('

You can only publish one post today. Please wait until tomorrow to post again. Thank you.

'); } } return $data; } add_filter('wp_insert_post_data', 'limit_user_posts_per_day', 10, 2); Crafting the Best Subject Lines for Cold Emails - Get Backlink SEO

Crafting the Best Subject Lines for Cold Emails