I was wondering: which is the fastest method or code to get meta tags?
I have this code with me, but using get_meta_tags function slows down the process. Any ideas?
$tags = get_meta_tags('http://www.example.com/');
echo $tags['keywords']; // keywords
echo $tags['description']; //description
