我正在使用SharePoint 2013公共站点而不是博客站点。
根据要求,我需要通过显示新的自定义视频列来自定义Sharepoint 2013公共站点博客“摘要视图”。
根据Per Research,我得到的结果是Sharepoint 2010而不是SP2013。
我也试过做这些事情但没有工作: - (
1.通过SiteCollection URL / _layouts / xsl / blog.xsl下载Blog.xsl。
2.根据要求更改只需在Blog.xsl中添加xml片段,并保存CustomBlog.xsl。
3.编辑博客页面的帖子部分。
4.选择“摘要视图”并在XSL部分中提供CustomBlog.xsl的路径。
<!--Start Blog for Video -->
<div class="Video">
<xsl:for-each select="$Fields">
<xsl:if test="@Name='VideoThumbnail' and not ($thisNode/@VideoThumbnail='')">
<xsl:text disable-output-escaping="yes" ddwrt:nbsp-preserve="yes">:&nbsp;</xsl:text><xsl:apply-templates select="$Fields[@Name='VideoThumbnail']" mode="Computed_body"><xsl:with-param name="thisNode" select="$thisNode"/></xsl:apply-templates>
</xsl:if>
</xsl:for-each>
</div>
<!--End Blog for Video -->
研究网址:
http://sympmarc.com/2012/04/04/customizing-the-display-of-a-sharepoint-2010-blog/
请帮我解决如何在Sharepoint 2013中自定义Blog的摘要视图。
谢谢,
萨特雅姆