MCQ Quiz on Jallianwala Bagh Massacre
Loading quiz...
MCQ Quiz on Jallianwala Bagh Massacre
Also Read:Jallianwala Bagh Massacre
Post Views: 15
add_action('save_post', function($post_id) { if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) return; if (get_post_type($post_id) !== 'post') return; // Avoid overwrite $existing = get_post_meta($post_id, '_aioseo_focus_keyphrases', true); if (!empty($existing)) return; $title = get_the_title($post_id); if (empty($title)) return; $keyword = strtolower($title); // Remove dates $keyword = preg_replace('/\b\d{1,2}([\/\-\.])\d{1,2}\1\d{2,4}\b/', '', $keyword); $keyword = preg_replace('/\b\d{4}\b/', '', $keyword); // Remove stopwords $stopwords = ['the','is','and','for','to','of','in','on','at','a','an','with','by','from']; $keyword = str_replace($stopwords, '', $keyword); // Clean text $keyword = preg_replace('/[^a-z0-9\s]/', '', $keyword); $keyword = preg_replace('/\s+/', ' ', $keyword); $keyword = trim($keyword); // Limit words $words = explode(' ', $keyword); $keyword = implode(' ', array_slice($words, 0, 4)); $keyword = ucwords($keyword); // AIOSEO format $focus_keyword = json_encode([ [ 'keyphrase' => $keyword ] ]); update_post_meta($post_id, '_aioseo_focus_keyphrases', $focus_keyword); });