Reputation: 125446
html code meta tag description,
it is generated dynamically and we have quotes in the description part and search engines didn't read everything.
it shows until the quotes begins in the search results
how to deal with it ?
thanks
Upvotes: 25
Views: 20513
Reputation: 319
In PHP use strip_tages
+ str_replace('"',""")
to archiv
<meta name="description" content=""quoted content"">
Upvotes: 1
Reputation: 655129
You need to escape the quotes using HTML character references:
<meta name="description" content=""quoted content"">
The description here is "quoted content"
.
Upvotes: 46