diff --git a/functions.php b/functions.php index b037136..0dd75cb 100644 --- a/functions.php +++ b/functions.php @@ -14,6 +14,9 @@ require_once 'functions/example.php'; if ( function_exists( 'add_theme_support' ) ) { + // Add support for document title tag + add_theme_support( 'title-tag' ); + // Add Thumbnail Theme Support add_theme_support( 'post-thumbnails' ); add_image_size( 'custom-size', 700, 200, true ); @@ -183,4 +186,6 @@ function wp_get_attachment_image_url( $id, $size = 'full', $attrs = [] ) $image = wp_get_attachment_image_src( $id, $size, $attrs ); return $image[0]; -} \ No newline at end of file +} + + diff --git a/header.php b/header.php index d7ed246..d6686eb 100755 --- a/header.php +++ b/header.php @@ -4,7 +4,6 @@ -