如何使用 EE 2 在导航栏中创建文章链接?
我正在寻找在维基上的一篇文章的页面导航栏中自动创建一个链接
,但没有成功,我需要一些有关它的帮助,我知道我必须使用类别
(我想但我不确定......) 遇到一些困难
因为我在理解该实用程序,尤其是如何使用它方面
I’m looking for create automatically a link in a nav bar of the page on an article by the
wiki, unsuccessfully, I would like some help about it, I know I have to usecategory
(I think but I’m not sure…) because I have some difficulties in understanding the
utility, and especially how to use it
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用路径变量作为Wiki 模块 在 ExpressionEngine 中,您可以使用以下代码链接到单个 Wiki 文章/页面:
< ;一个href="{path:view_article}">{title}
这将输出以下示例 HTML 代码:
测试页
您可以在
/themes/wiki_themes/
中的整个 Wiki 主题模板中看到此标签的使用。Using the Path Variables as part of the Wiki Module in ExpressionEngine, you can link to an individual Wiki article/page by using the following code:
<a href="{path:view_article}">{title}</a>
This would output the following example HTML code:
<a href="http://example.com/index.php/wiki/Test_Page">Test Page</a>
You can see this tag in use throughout the Wiki Theme Templates in
/themes/wiki_themes/
.