Obviously Joe is right about this (not using my code shown above, if you are using vBSuite.
However, being the stubborn person I am, I keep trying to figure out how to fill the og: array with the proper values.
So far, here is what I have come up with:
Code:
if (THIS_SCRIPT == 'showthread')
{
global $thread;
$og_array['og:description'] = $thread['meta_description'];
$og_array['og:title'] = $thread['title'];
}
if (THIS_SCRIPT == 'entry' OR THIS_SCRIPT == 'blog')
{
global $blog, $bloginfo;
if ($blog['message'] != "")
{
$og_array['og:description'] = $blog['message'];
}
else
{
$og_array['og:description'] = "BBB";
}
$og_array['og:title'] = $bloginfo['title'];
}
So far, the og:title parameter is filled by the $bloginfo['title'] variable and that's a good thing. However, the og:description doesn't seem to get updated from $blog['message'].
I am using the blog_show_entry template as a guide line, and in there, it appears that the proper variable to use is indeed $blog['message'], but that is obviously not set, when the script above loads?? I do not understand.
Interestingly enough, the vbcms articles automatically get the proper og:description (the article text itself, but their title comprises of the site title and then the title of the article. I wonder if there is a way to use only the article's title.