Here is my plugin, is it right?
Hook: vbcms_article_populate_end(vbulletin cms)
Name: Add profile picture as meta tag
Order: 5
Code:
PHP Code:
$ppuserinfo = fetch_userinfo($userid, 8);
if ($vbulletin->options['usefileavatar'])
{
$ppuserinfo['profilepicurl'] = $vbulletin->options['profilepicurl'] . '/profilepic' . $ppuserinfo['userid'] . '_' . $ppuserinfo['profilepicrevision'] . '.gif';
if (!file_exists($ppuserinfo['profilepicurl']))
{
$ppuserinfo['profilepicrevision'] = 0;
}
}
else
{
$ppuserinfo['profilepicurl'] = 'image.php?' . $vbulletin->session->vars['sessionurl'] . 'u=' . $ppuserinfo['userid'] . "&dateline=$ppuserinfo[profilepicdateline]&type=profile";
}
$profilepicexists = $ppuserinfo['profilepicrevision'] OR $ppuserinfo['profilepicdateline'];
if ($profilepicexists)
{
vB_Template::preRegister(vbcms_content_article_page, array('profilepicurl' => $ppuserinfo['profilepicurl']));
}
--------------- Added [DATE]1483479854[/DATE] at [TIME]1483479854[/TIME] ---------------
It didn't work !!
Here is what I get in my source code
HTML Code:
<meta property="og:image" content="" />