如何在超链接中使用自定义字段?

发布于 2024-10-13 10:26:45 字数 505 浏览 0 评论 0原文

有人知道如何将自定义字段链接到 4 段深的页面吗?

<td valign="top" align="center">Hotels:</td>
<td valign="top">{toursRelatedHotels}{title}{/toursRelatedHotels}</td>

我想链接“酒店”字段的 {title},但我发现很难做到这一点。

我这样做的方式如下

{toursRelatedHotels}<a href="{title_permalink='destination/{toursRelatedCountries}{url_title}{/toursRelatedCountries}'}">{title}</a>{/toursRelatedHotels}

似乎在链接中看不到国家/地区的 url_title。我还能怎样做呢?

Would anyone know how to link the custom field to a page that lies 4 segments deep?

<td valign="top" align="center">Hotels:</td>
<td valign="top">{toursRelatedHotels}{title}{/toursRelatedHotels}</td>

I would like to link the {title} of the Hotels field, Im finding it hard to do so.

The way I am doing it is as follows

{toursRelatedHotels}<a href="{title_permalink='destination/{toursRelatedCountries}{url_title}{/toursRelatedCountries}'}">{title}</a>{/toursRelatedHotels}

It seems that the url_title cannot be seen of the country in the link. how else can I do this?

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

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

发布评论

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

评论(2

酒解孤独 2024-10-20 10:26:45

我通常使用(商业)附加结构构建网站,它允许您在几乎任何地方轻松使用 {page_url} 标记,并避免大量 url 深度问题。

http://buildwithstruct.com/

I usually build sites with the (commercial) add-on Structure, which allows you to easily use a {page_url} tag pretty much anywhere and avoid numerous url depth issues.

http://buildwithstructure.com/

吃颗糖壮壮胆 2024-10-20 10:26:45

您能给我们提供更多信息,或者包含完整的模板代码吗?您是否正在尝试访问相关条目或父条目的 url_title?

当您尝试显示有关相关条目的信息时,ExpressionEngine 可能有点有趣。通常,最好的办法是将新模板嵌入到相关条目循环中。

{toursRelatedHotels}

{embed="template_group_name/template_name" hotel_id="{entry_id}"}

{/toursRelatedHotels}

请查看此处了解更多信息 - http://expressionengine.com/user_guide/templates/embedding.html

Could you give us a bit more info, or maybe include the full template code? Are you trying to access the url_title of the related entry, or the parent entry?

ExpressionEngine can be a bit funny when you are trying to show information about related entries. Often the best thing to do is to embed a new template inside your related entries loop.

{toursRelatedHotels}

{embed="template_group_name/template_name" hotel_id="{entry_id}"}

{/toursRelatedHotels}

Have a look here for more info - http://expressionengine.com/user_guide/templates/embedding.html

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