“创建新博客条目”使用 drupal 中的视图进行链接

发布于 2024-10-21 09:25:10 字数 116 浏览 0 评论 0原文

我正在 drupal 中开发一个博客并使用视图模块。我创建了一个视图来显示最新条目,但我想在博客视图上添加一个名为“创建新博客条目”的链接。就像实际的 drupal 博客一样。这可能吗?如果是,我怎样才能实现这一目标。

I am working on a blog in drupal and using the view module. I have created a view to show the latest entries but i would like to add just one link called, "create a new blog entry" on the blog view. Just like the actual drupal blog. Is this possible? If yes, how can i achieve this.

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

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

发布评论

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

评论(1

瑾夏年华 2024-10-28 09:25:10

编辑视图时,单击“基本设置”下的 Header 并添加以下内容:

<?php
  print l('Create a new blog entry', 'node/add/blog');
?>

确保您要填写的 Header 部分的输入格式设置为 PHP 代码,否则您将看到该代码以文本形式打印出来。如果您希望此链接位于视图底部,您还可以将其添加到“基本设置”的页脚区域。

While editing your view, click on Header under "Basic Settings" and add the following:

<?php
  print l('Create a new blog entry', 'node/add/blog');
?>

Make sure the input format of the Header section you are filling in is set to PHP code or else you will see that code printed out as text. You can also add this to the Footer area of 'Basic Settings' if you want this link at the bottom of the view.

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