Expression Engine 博客和频道之间的区别?

发布于 2024-11-26 16:44:51 字数 81 浏览 1 评论 0原文

使用 Expression Engine,Weblog 和 Channel 对之间有什么区别? Channel 是 v2 中同一事物的名称吗? 谢谢

With Expression Engine, whats the difference between Weblog and Channel pairs? Is Channel just the name for the same thing in v2?
Thanks

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

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

发布评论

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

评论(2

李白 2024-12-03 16:44:51

Channel 只是 v2 中同一事物的名称吗?

是的。

Is Channel just the name for the same thing in v2?

Yes.

盗琴音 2024-12-03 16:44:51

ExpressionEngine 1.x - 及其以前的代码库 pMachine Pro - 天真地将数据库中存储的数据集合区分为“博客”。

此命名法在整个控制面板和模块命名中广泛使用,一直到 博客条目模板中使用的标签

ExpressionEngine 1.x 博客条目标签:

{exp:weblog:entries weblog="portfolio"}
    <p>{title}</p>
{/exp:weblog:entries}

随着网站发布需求的发展和 ExpressionEngine 本身的成熟,EllisLab 认识到将所有内容称为“博客”是愚蠢的(用我自己的话说),并且没有这样做不反映现实世界的使用情况。

因此,随着 2009 年 12 月 ExpressionEngine 2.x Public Beta 的发布,从 EE 2.0 Build 20091202 开始,网络博客正式重命名为频道。

使用上面的代码片段,您将请参阅 weblogs 的用法已重命名为 channels

ExpressionEngine 2.x Channel Entries Tag:

{exp:channel:entries channel="portfolio"}
    <p>{title}</p>
{/exp:channel:entries}

命名法的这一变化使 ExpressionEngine 不再被简单地视为将博客工具集成到更强大的发布平台或CMS(内容管理系统)中。

ExpressionEngine 1.x — and its former code base pMachine Pro — naïvely distinguished a collection of data stored in the database as a "weblog".

This nomenclature was used widely throughout the Control Panel and naming of Modules, right down to the the Weblog Entries Tag used in templates.

ExpressionEngine 1.x Weblog Entries Tag:

{exp:weblog:entries weblog="portfolio"}
    <p>{title}</p>
{/exp:weblog:entries}

As the publishing needs of web sites evolved and ExpressionEngine itself matured, EllisLab recognized that calling everything a "weblog" was silly (to put it into my own words) and didn't reflect real world use.

So with the release of ExpressionEngine 2.x Public Beta in December 2009, weblogs were officially renamed to channels, starting with EE 2.0, Build 20091202.

Using the code snippet above, you'll see the usage of weblogs was renamed to channels:

ExpressionEngine 2.x Channel Entries Tag:

{exp:channel:entries channel="portfolio"}
    <p>{title}</p>
{/exp:channel:entries}

This change in nomenclature positions ExpressionEngine from being viewed as simply a Blogging Tool into a more robust Publishing Platform or CMS (Content Management System).

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