wp_title() | Function | WordPress Developer Resources

PHOTO EMBED

Fri Feb 04 2022 14:11:53 GMT+0000 (Coordinated Universal Time)

Saved by @rafalw

<title>
    <?php if(is_front_page() || is_home()){
        echo get_bloginfo('name');
    } else{
        echo wp_title('');
    }?>
</title>
content_copyCOPY

https://developer.wordpress.org/reference/functions/wp_title/