Hi there,
For some obscure reasons, twitter card validator say me that twitter:title meta tag is missing, but it’s in my html source as you can see ( nothing in the body section is normal )
<!doctype html>
<html lang="fr">
<head>
<meta charset="utf-8">
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="<?=$site?>" />
<meta name="twitter:creator" content="<?=$creator?>" />
<meta name="twitter:title" content="<?=$title?>" />
<meta name="twitter:description" content="<?=$content?>" />
<meta name="twitter:image" content="<?=$path?>"/>
</head>
<body>
</body>
</html>
The only clue i have is when i fill twitter:title meta tag with plain text value like
<meta name="twitter:title" content="Here is my title" />
it works like a charm.
All others var works… any ideas guys ?
Thanks