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

“The Knowledge Library”

Knowledge for All, without Barriers……….
An Initiative by: Kausik Chakraborty.

The Knowledge Library

MCQ Quiz on Charlie Chaplin,

MCQ Quiz on Charlie Chaplin,

Loading quiz...

MCQ Quiz on Charlie Chaplin,

Also Read: The Life and Legacy of Charlie Chaplin

Sign up to Receive Awesome Content in your Inbox, Frequently.

We don’t Spam!
Thank You for your Valuable Time

Also Read  MCQ Quiz on Biosphere Reserves in India

Share this post

error: Content is protected !!