Skip to main content
Login Join
Snippet · PHP

Auto Set SEO Title while using Rank Math

Shared by Abdullah Kaludi · May 7, 2026

20 views
Back to Snippets

This helps to Fix missing SEO titles automatically

add_action('save_post', function ($post_id) {
    if (wp_is_post_autosave($post_id)) return;

    $title = get_the_title($post_id);
    update_post_meta($post_id, 'rank_math_title', $title . ' | Your Site Name');
});
Know a different way to do this? Add your approach as a variation so folks can compare them side by side.
Submit a variation

0 comments