For example I have title “The Battleship Trailer”
so it will generate keyword like this
“best , player, of, the, world”
how can i do it ?
I want to apear in html like this…
First:The
Second:Battleship
Third:Trailer
<meta name="keywords" content="<FirstWord>,<second>,<third>"/>
More exactly i want to split the title in words.
I use WordPress
It might be better to get the post’s slug. That will sanitize and strip out any shorter words that won’t be of any value to search engines. Then explode and implode with PHP…
Here how:
Let me know if this worked for you…