Drupal-寻找将tweet打印到node-type.tpl.php的代码

时间:2013-04-20 01:11:05

标签: php drupal-7 drupal-modules

我正在使用Drupal 7中的Tweet模块。我需要用于在node-type.tpl.php中打印tweet字段的代码。不幸的是,我无法找到正确的代码来使链接出现在我的节点中。使用contemplate我发现了以下代码;

<?php echo $content['tweet']; ?>
<?php echo $content['field_tweet']; ?>
<?php echo render($content['tweet']); ?>
<?php echo render($content['field_tweet']); ?>
<?php print $node->content['body']['#object']->content['links']['tweet']['#theme'] ?>
<?php print $node->content['body']['#object']->content['links']['tweet']['#attributes']['class'][1]?>
<?php print $node->content['body']['#object']->content['links']['tweet']['#attributes']['class'][0]?>
<?php print $node->content['body']['#object']->content['links']['tweet']['#links']['tweet_Twitter']['html']?>
<?php print $node->content['body']['#object']->content['links']['tweet']['#links']['tweet_Twitter']['href']?>
<?php print $node->content['body']['#object']->content['links']['tweet']['#links']['tweet_Twitter']['title']?>
<?php print $node->content['body']['#object']->content['links']['tweet']['#links']['tweet_Twitter']['title']?> 

但它们都不起作用。有人有什么想法吗?

1 个答案:

答案 0 :(得分:1)

Tweet模块文档声明它将在节点的links部分中呈现。将此添加到node - content-type-name.tpl.php,您希望在其中发送推文链接:

<?php print render($content['links']); ?>

清除缓存。