将部件渲染到 Orchard CMS 中的不同区域

发布于 2024-11-07 00:46:06 字数 150 浏览 4 评论 0 原文

我是 Orchard CMS 的新手,想知道是否可以将页面内容类型中的内容部分设置呈现到不同的区域而不是内容本身。

例如,我设置了一个 TextField,其中包含要用作页面标题的图像 url,但放置在与内容本身不同的区域中。

有人能指出我正确的方向吗?

I'm new to Orchard CMS and wondered if it was possible to render content parts setup in the page content type into a different zone rather than the content itself.

For instance, I setup a TextField which holds an image url to be used as a page Title but is placed in a different area from the content itself.

Can anyone point me in the right direction?

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

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

发布评论

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

评论(3

秋叶绚丽 2024-11-14 00:46:06

如果您的意思是将部分发送到不在顶级内容区域内的区域,您可以尝试以下方法:http://weblogs.asp.net/bleroy/archive/2011/03/26/dispatching-orchard-shapes-to-任意-zones.aspx
我们还在考虑对 Orchard 未来版本的放置进行各种扩展。

If you mean sending parts to a zone that is not inside the top-level Content zone, you can try this approach: http://weblogs.asp.net/bleroy/archive/2011/03/26/dispatching-orchard-shapes-to-arbitrary-zones.aspx
We are also considering various extensions to placement for future versions of Orchard.

千年*琉璃梦 2024-11-14 00:46:06

从 Orchard 1.5 开始,您可以使用主题的placement.info 文件将部件注入任何区域。这使用 区域放置

下面是一个示例,当博客文章在详细视图中显示时,会将博客文章的标签放置在 AssideFirst 区域中。

<Placement>
    <Match ContentType="BlogPost">
        <Match DisplayType="Detail">
            <Place Parts_Tags_ShowTags="/AssideFirst:1"/>
        </Match>
    </Match>
</Placement>

区域名称后面的数字是位置。较小的数字将使其显示在该区域中其他小部件的上方,而较大的数字将使其显示在下方。

As of Orchard 1.5 you can inject a part into any zone using your theme's placement.info file. This uses zone placement.

Here is an example that would place blog post's tags in the AssideFirst zone when the blog post was being shown in detail view.

<Placement>
    <Match ContentType="BlogPost">
        <Match DisplayType="Detail">
            <Place Parts_Tags_ShowTags="/AssideFirst:1"/>
        </Match>
    </Match>
</Placement>

The number after the zone name is the position. A smaller number will make it appear above other widgets in this zone and a larger number will make it appear lower down.

半城柳色半声笛 2024-11-14 00:46:06

您可以通过 Placement.info 文件。它是一个非常简单但功能强大的工具,允许您更改渲染区域、零件的顺序等。

您能详细说明一下您的场景吗?

You can customize content parts' display properties via Placement.info file. It's a very simple, yet powerful tool that allows you to change rendering zones, parts' ordering and such.

Could you please elaborate more about your scenario?

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