我正在使用带有 Metatags 7.x-1.0-beta1 的 drupal 7 和 Video Embed Field 7.x-2.0-beta5。
另一方面,我有一个带有视频字段的内容类型。预告片正确显示缩略图,默认视图也显示视频。
我想要/需要的是创建一个带有视频缩略图的 og:image 元标记(与预告片视图相同的缩略图)在元标记配置中,我正在使用 OpenGraphImage = [node:field_video] 但它不起作用......
有任何想法吗?
我所做的是在 template.php 添加一些代码
function andromeda_preprocess_node(&$variables) {
global $base_url;
$img = $base_url.base_path().path_to_theme()."/logo.jpg";
if($variables['is_front'] != TRUE){
if(isset($variables['node']->field_imagenes['und'][0]['uri'])){
$img = file_create_url($variables['node']->field_imagenes['und'][0]['uri']);
}
else if(isset($variables['node']->field_video['und'][0]['thumbnail_path'])){
$img = file_create_url($variables['node']->field_video['und'][0]['thumbnail_path']);
}
}
$element = array(
'#tag' => 'meta',
'#attributes' => array(
"property" => "og:image",
"content" => $img,
),
);
drupal_add_html_head($element,'facebook_share_image');
效果很好!