1

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

<?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']?> 

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

4

1 回答 1

1

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

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

并清除缓存。

于 2013-04-26T03:44:25.603 回答