我需要在我的博客中添加评论功能 我有一篇文章。我需要在那篇文章评论部分之后。
也许我很蠢但我不知道如何解决这个......
您可以告诉我任何想法或发送一些URL的例子吗?
我使用sitecore在section和xslt中构建我的文章来构建这篇文章的视图。
示例xsl:template
到我的文章:
<xsl:template match="*" mode="main">
<xsl:variable name = "siteRoot" select="ancestor-or-self::item[sc:IsItemOfType('ArticlePage',.)]"/>
<div>
<h2>
<sc:html select = "$siteRoot" field="Article_Title"/>
</h2>
<h6>
<sc:html select="$siteRoot" field="Article_Date" />
</h6>
<sc:html select = "$siteRoot" field="Article_Content" />
<br />
<div class="CommentRegion">
Comments must be here
</div>
</div>
</xsl:template>