fix(header): remove duplicate title tag

Removed the redundant title tag from the header to prevent duplication and potential SEO issues. The title is already dynamically handled elsewhere in the theme. Reducing clutter and improving maintainability.
This commit is contained in:
Kumi 2024-06-20 15:03:35 +02:00
parent bc77ba4aba
commit d87996372e
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -4,7 +4,6 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><?php wp_title('|', true, 'right'); ?></title>
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>">
<?php wp_head(); ?>
</head>