web-dev-qa-db-fra.com

Titre du site non affiché. Que puis-je faire?

Le titre de mon site WordPress ne s'affiche pas. Cela affiche simplement le domaine comme, www.example.com .

Veuillez suggérer comment afficher la balise de titre appropriée.

1
Sujon Kumar Roy

Ajoutez ce code à votre functions.php

if ( !function_exists( 'yourtheme_setup' ) ) {
    function yourtheme_setup() {
        /*
         * Let WordPress manage the document title.
         * By adding theme support, we declare that this theme does not use a
         * hard-coded <title> tag in the document head, and expect WordPress to
         * provide it for us.
         */
        add_theme_support( 'title-tag' );

    add_action( 'after_setup_theme', 'yourtheme_setup' );
}

Ou

Si votre functions.php a déjà after_setup_theme

ajoutez simplement ce code add_theme_support( 'title-tag' ); dans votre after_setup_theme

4
Дтдця