将节点 $links 移动到侧边栏

发布于 2024-09-10 04:33:19 字数 79 浏览 3 评论 0原文

如何在侧边栏中打印节点 $links?我可以调用什么函数从node.tpl.php 外部检索它们并打印它们?我还在节点上。另外,我无法使用面板。

How can I print a nodes $links in a sidebar? What function can I call to retrieve them from outside the node.tpl.php and print them? I am still on the node. Also, I can't use Panels.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧城空念 2024-09-17 04:33:19

template_preprocess_node 函数:

$variables['links'] = !empty($node->links) ? theme('links', $node->links, array('class' => 'links inline')) : '';

您可能想要根据您的用例稍微改变主题功能。我还没有测试它如何与其他模块一起工作,但是如果他们使用节点对象来添加链接,那就应该没问题。

From the template_preprocess_node function:

$variables['links'] = !empty($node->links) ? theme('links', $node->links, array('class' => 'links inline')) : '';

You may want to alter the theme function a bit for your use case. I haven't tested how this works with other modules, but if they use the node object instead to add their links it should be fine.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文