How do I fix title? [closed]
Usage of wp_title() is not recommended anymore. Instead, you can add the title-tag support to your theme, so WordPress can automatically build and output the proper title for you. Here’s how to do it: add_action( ‘after_setup_theme’, ‘wpse302145_add_title_tag’ ); function wpse302145_add_title_tag() { add_theme_support( ‘title-tag’ ); } This piece of code goes in your theme/child-theme’s functions.php file. … Read more