3

我正在使用 Sitecore 7.2 和博客 2.3。

我有一个博客,里面有几个条目,帖子显示得很好。我正在尝试创建一个继承“Entry”的自定义模板“CustomEntry”

我按照链接https://github.com/WeTeam/WeBlog/wiki/Template-Settings中的所有步骤进行操作。博客现在完全是空的。调试时,GetBlogEntries() 似乎为空。我相信这是一个与索引相关的问题。我有几件事不清楚。

  1. 在为Entry创建新模板时,我明白我应该继承Entry。我继承了条目和标准模板,并将条目排序为高于标准模板。这是我应该做的吗?
  2. 在下面的代码中,应该是什么“”,它应该是我正在使用的博客模板。在我的情况下CustomEntry?我知道该值应该是“CustomEntry”模板的 ID。
<locations hint="list:AddCrawler">
  <master type="Sitecore.Modules.WeBlog.Search.Crawlers.DatabaseCrawler,Sitecore.Modules.WeBlog">
    <include hint="list:IncludeTemplate" entryTemplate="$(EntryTemplateID)" commentTemplate="$(CommentTemplateID)">
      <myEntry>{D5608C5D-45E4-43FA-B2E4-DCD9DDF3E5A1}</myEntry>
      <myComment>{C85123CF-DA89-4C37-ACFA-4F8BA5157AC1}</myComment>
    </include>
  </master>
  <web type="Sitecore.Modules.WeBlog.Search.Crawlers.DatabaseCrawler,Sitecore.Modules.WeBlog">
    <include hint="list:IncludeTemplate" entryTemplate="$(EntryTemplateID)" commentTemplate="$(CommentTemplateID)">
      <myEntry>{D5608C5D-45E4-43FA-B2E4-DCD9DDF3E5A1}</myEntry>
      <myComment>{C85123CF-DA89-4C37-ACFA-4F8BA5157AC1}</myComment>
    </include>
  </web>
</locations>
4

1 回答 1

3

是的,您应该创建 3 个模板,每个模板都将从 BlogEntry、BlogCategory 或 BlogComment 继承:

/sitecore/templates/Modules/WeBlog/BlogEntry /sitecore/templates/Modules/WeBlog/BlogCategory /sitecore/templates/Modules/WeBlog/BlogComment

片段中列出的设置适用于您在主索引和 Web 索引上设置的搜索索引。

这些设置应该是继承自内置模板的新模板的模板 ID。标签“myEntry”或“myComment”的名称可以任意命名,并且只会从这些标签中读取 Guid。

<myEntry>{D5608C5D-45E4-43FA-B2E4-DCD9DDF3E5A1}</myEntry>
<myComment>{C85123CF-DA89-4C37-ACFA-4F8BA5157AC1}</myComment>

我会尝试重建名为 weBlog 的搜索索引,看看这是否能解决问题。

您必须确保发布的博客条目基于您创建的新模板。

您可以使用 Luke - https://code.google.com/p/luke/检查 Sitecore 索引 /data/indexes 以查看您是否在索引中获取博客项目。

于 2015-04-21T13:04:32.507 回答