Click here to Skip to main content
15,867,488 members
Articles / Web Development / ASP.NET

Step by Step Creating News Page Layout using Content Type in SharePoint 2013

Rate me:
Please Sign up or sign in to vote.
4.91/5 (10 votes)
20 Sep 2014CPOL3 min read 74.6K   469   8   11
Step by step creating News Page Layout using Content Type in SharePoint 2013

Introduction

Sometimes, we need to create sub site for news or events or anything like this. We will go on and explain not only how to do it step by step but also in the next series we will continue to make this page layout as the default page layout of a publishing sub site. After that, we will make a content query in the root site to preview the news articles. Finally, we will using variation to create a similar publishing sub site in other languages.

Note: We will be adding the solution for downloads as soon as possible. You can follow us to be informed with any new content.

  1. Step by step creation of News Page Layout using Content Type in SharePoint 2013.
  2. How to Create a publishing sub site for news and using variation to creating the same site to other languages finally making the previous page layout as the default page layout of the sub site.

Let’s go on…

Firstly

  1. Open Visual Studio 2013 and a create new project of type SharePoint Solutions…”SharePoint 2013 Empty Project”.

    Image 1

    Create new SharePoint 2013 empty project
  2. As we will deploy our solution as a farm solution in our local farm on our local machine.
    Note: Make sure that the site is a publishing site to be able to proceed.

    Image 2

    Deploy the SharePoint site as a farm solution
  3. Our solution will be as the picture blew and we will add three folders for “SiteColumns”, “ContentTypes” and “PageLayouts”.

    Image 3

    SharePoint solution items
  4. Start by adding a new item to “SiteColumns” folder.

    Image 4

    Adding new item to SharePoint solution
  5. After we adding a new site column and rename it, add the following columns as we need to make the news layout NewsTitle, NewsBody, NewsBrief, NewsDate and NewsImage.

    Image 5

    Adding new item of type site column to the solution

    Then add the below fields and you will note that I use Resources in the DisplayName and the Group.

    XML
    <Field
    ID="{9fd593c1-75d6-4c23-8ce1-4e5de0d97545}"
    Name="NewsTitle"
    DisplayName="$Resources:SPWorld_News,NewsTitle;"
    Type="Text"
    Required="TRUE"
    Group="$Resources:SPWorld_News,NewsGroup;">
    </Field>
    <Field
    ID="{fcd9f32e-e2e0-4d00-8793-cfd2abf8ef4d}"
    Name="NewsBrief"
    DisplayName="$Resources:SPWorld_News,NewsBrief;"
    Type="Note"
    Required="FALSE"
    Group="$Resources:SPWorld_News,NewsGroup;">
    </Field>
    <Field
    ID="{FF268335-35E7-4306-B60F-E3666E5DDC07}"
    Name="NewsBody"
    DisplayName="$Resources:SPWorld_News,NewsBody;"
    Type="HTML"
    Required="TRUE"
    RichText="TRUE"
    RichTextMode="FullHtml"
    Group="$Resources:SPWorld_News,NewsGroup;">
    </Field>
    <Field
    ID="{FCA0BBA0-870C-4D42-A34A-41A69749F963}"
    Name="NewsDate"
    DisplayName="$Resources:SPWorld_News,NewsDate;"
    Type="DateTime"
    Required="TRUE"
    Group="$Resources:SPWorld_News,NewsGroup;">
    </Field>
    <Field
    ID="{8218A8D9-912C-47E7-AAD2-12AA10B42BE3}"
    Name="NewsImage"
    DisplayName="$Resources:SPWorld_News,NewsImage;"
    Required="FALSE"
    Type="Image"
    RichText="TRUE"
    RichTextMode="ThemeHtml"
    Group="$Resources:SPWorld_News,NewsGroup;">
    </Field>
    

    After That

  6. Create Content Type, we will be adding new Content Type to the folder ContentTypes.

    Image 6

    Adding new item of type Content Type to SharePoint solution
  7. We must make sure to select the base of the content type “Page”.

    Image 7

    Specifying the base type of the content type
  8. Open the content type and add our new columns to it.

    Image 8

    Adding columns to the content type
  9. Open the elements file of the content type and make sure it will look like this code below.

    Note: We use Resources in the Name, Description and the group of the content type.

    XML
    <!-- Parent ContentType:
    Page (0x010100C568DB52D9D0A14D9B2FDCC96666E9F2007948130EC3DB064584E219954237AF39) -->
     <ContentType
     ID="0x010100C568DB52D9D0A14D9B2FDCC96666E9F2007948130EC3DB064584E219954237AF39007A5224C9C2804A46B028C4F78283A2CB"
     Name="$Resources:SPWorld_News,NewsContentType;"
     Group="$Resources:SPWorld_News,NewsGroup;"
     Description="$Resources:SPWorld_News,NewsContentTypeDesc;"
     Inherits="TRUE" Version="0">
     <FieldRefs>
     <FieldRef ID="{9fd593c1-75d6-4c23-8ce1-4e5de0d97545}"
     DisplayName="$Resources:SPWorld_News,NewsTitle;" Required="TRUE" Name="NewsTitle" />
     <FieldRef ID="{fcd9f32e-e2e0-4d00-8793-cfd2abf8ef4d}"
     DisplayName="$Resources:SPWorld_News,NewsBrief;" Required="FALSE" Name="NewsBrief" />
     <FieldRef ID="{FF268335-35E7-4306-B60F-E3666E5DDC07}"
     DisplayName="$Resources:SPWorld_News,NewsBody;" Required="TRUE" Name="NewsBody" />
     <FieldRef ID="{FCA0BBA0-870C-4D42-A34A-41A69749F963}"
     DisplayName="$Resources:SPWorld_News,NewsDate;" Required="TRUE" Name="NewsDate" />
     <FieldRef ID="{8218A8D9-912C-47E7-AAD2-12AA10B42BE3}"
     DisplayName="$Resources:SPWorld_News,NewsImage;" Required="FALSE" Name="NewsImage" />
     </FieldRefs>
     </ContentType>
  10. Add new Module to the PageLayouts folder. After that, we will find sample.txt file, then rename it “NewsPageLayout.aspx”.

    Image 9

    Adding new module to SharePoint solution.
  11. Add the code below to this “NewsPageLayout.aspx”.
    ASP.NET
     <%@ Page language="C#" Inherits="Microsoft.SharePoint.Publishing.PublishingLayoutPage,
    Microsoft.SharePoint.Publishing,Version=15.0.0.0,Culture=neutral,PublicKeyToken=71e9bce111e9429c" %>
     <%@ Register Tagprefix="SharePointWebControls" Namespace="Microsoft.SharePoint.WebControls"
     Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
     <%@ Register Tagprefix="WebPartPages" Namespace="Microsoft.SharePoint.WebPartPages"
     Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
     <%@ Register Tagprefix="PublishingWebControls" Namespace="Microsoft.SharePoint.Publishing.WebControls"
     Assembly="Microsoft.SharePoint.Publishing, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
     <%@ Register Tagprefix="PublishingNavigation" Namespace="Microsoft.SharePoint.Publishing.Navigation"
     Assembly="Microsoft.SharePoint.Publishing, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
    
     <asp:Content ContentPlaceholderID="PlaceHolderPageTitle" runat="server">
     <SharePointWebControls:FieldValue id="FieldValue1" FieldName="Title" runat="server"/>
     </asp:Content>
     <asp:Content ContentPlaceholderID="PlaceHolderMain" runat="server">
    
     <H1><SharePointWebControls:TextField ID="NewsTitle"
     FieldName="9fd593c1-75d6-4c23-8ce1-4e5de0d97545" runat="server">
     </SharePointWebControls:TextField></H1>
     <p><PublishingWebControls:RichHtmlField ID="NewsBody"
     FieldName="FF268335-35E7-4306-B60F-E3666E5DDC07" runat="server">
     </PublishingWebControls:RichHtmlField></p>
     <p><SharePointWebControls:NoteField ID="NewsBrief"
     FieldName="fcd9f32e-e2e0-4d00-8793-cfd2abf8ef4d" runat="server">
     </SharePointWebControls:NoteField></p>
     <p><SharePointWebControls:DateTimeField ID="NewsDate"
     FieldName="FCA0BBA0-870C-4D42-A34A-41A69749F963" runat="server">
     </SharePointWebControls:DateTimeField></p>
     <p><PublishingWebControls:RichImageField ID="NewsImage"
     FieldName="8218A8D9-912C-47E7-AAD2-12AA10B42BE3" runat="server">
     </PublishingWebControls:RichImageField></p>
    
     </asp:Content>
  12. Add the following code to the elements file of the “NewsPageLayouts” module.
    ASP.NET
     <Module Name="NewsPageLayout" 
    Url="_catalogs/masterpage" List="116" >
     <File Path="NewsPageLayout\NewsPageLayout.aspx" Url="NewsPageLayout.aspx"
     Type="GhostableInLibrary" IgnoreIfAlreadyExists="TRUE" 
     ReplaceContent="TRUE" Level="Published" >
     <Property Name="Title" Value="$Resources:SPWorld_News,NewsPageLayout;" />
     <Property Name="MasterPageDescription" Value="$Resources:SPWorld_News,NewsPageLayout;" />
     <Property Name="ContentType" Value="$Resources:cmscore,contenttype_pagelayout_name;" />
     <Property Name="PublishingPreviewImage"
     Value="~SiteCollection/_catalogs/masterpage/$Resources:core,Culture;
     /Preview Images/WelcomeSplash.png, ~SiteCollection/_catalogs/masterpage/$Resources:
     core,Culture;/Preview Images/WelcomeSplash.png" />
     <Property Name="PublishingAssociatedContentType"
     Value=";#$Resources:SPWorld_News,NewsContentType;;
     #0x010100C568DB52D9D0A14D9B2FDCC96666E9F2007948130EC3DB064584E219954237AF39007A5224C9C2804A46B028C4F78283A2CB;#">
     </Property>
     </File>
     </Module>
  13. Don’t forget to add the Resources folder, then add the resource file with the name “SPWorld_News.resx” as we used it in the previous steps and add the below keys to it.
    News                     News
    NewsBody                 News Body
    NewsBrief                News Brief
    NewsContentType          News Content Type
    NewsContentTypeDesc      News Content Type Desc.
    NewsDate                 News Date
    NewsGroup                News
    NewsImage                News Image
    NewsPageLayout           News Page Layout
    NewsTitle                News Title
  14. Finally, deploy the solution.
  15. The next steps will explain how we add the “news content type” to the page layout through SharePoint wizard. We will do these steps pragmatically in the next article.

    Note: We will do the steps from “A” to “D” pragmatically in the next article without the need to do it manually from SharePoint.

    Image 10

    1. Go to Site Contents then Pages , Library, Library SettingsOpening library setting of the page library
    2. Add the news content type to the page layout.

      Image 11

      Adding existing content type to the pages library
    3. Then

      Image 12

      Selecting the content type to add it to pages library
    4. Go to Pages Library, Files, New Document, select News Content Type.

      Image 13

      Adding new document of the news content type to pages library
    5. Write the page title.

      Image 14

      Creating new page of news content type to pages library.
    6. Open the page to edit it. Pages library contains new page of news content type.

      Image 15

    7. Now we can see the page Layout after we add the title, Body, Brief, date and image. Finally click Save the news.

      Image 16

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) Perfect Presentation (2P)
Egypt Egypt
I am a Geek of Software Engineering from Egypt. I started my Career from Programming in ASP and now working as
.NET/SharePoint Senior Developer. I always been towards Microsoft Technologies. My other hobbies are traveling, Internet, spending time with family and hang out with friends.

Comments and Discussions

 
QuestionUseful article Pin
Riadh Ben Arfi17-Apr-15 0:39
Riadh Ben Arfi17-Apr-15 0:39 
AnswerRe: Useful article Pin
Mohammad A. Amer17-Apr-15 2:45
professionalMohammad A. Amer17-Apr-15 2:45 
Thanks,

Don't forget your vote about the article.

Regards,,,

GeneralRe: Useful article Pin
Riadh Ben Arfi17-Apr-15 3:36
Riadh Ben Arfi17-Apr-15 3:36 
GeneralRe: Useful article Pin
Mohammad A. Amer17-Apr-15 5:23
professionalMohammad A. Amer17-Apr-15 5:23 
QuestionInherited columns still displaying Pin
Thalavady27-Feb-15 4:06
Thalavady27-Feb-15 4:06 
AnswerRe: Inherited columns still displaying Pin
Mohammad A. Amer24-Mar-15 0:07
professionalMohammad A. Amer24-Mar-15 0:07 
QuestionNote: We will do the steps from “A” to “D” pragmatically in the next article without the need to do it manually from SharePoint. Pin
yharik.a9-Nov-14 17:41
yharik.a9-Nov-14 17:41 
AnswerRe: Note: We will do the steps from “A” to “D” pragmatically in the next article without the need to do it manually from SharePoint. Pin
Mohammad A. Amer9-Nov-14 20:34
professionalMohammad A. Amer9-Nov-14 20:34 
AnswerRe: Note: We will do the steps from “A” to “D” pragmatically in the next article without the need to do it manually from SharePoint. Pin
Mohammad A. Amer17-Apr-15 5:24
professionalMohammad A. Amer17-Apr-15 5:24 
GeneralMy vote of 5 Pin
Humayun Kabir Mamun21-Sep-14 18:05
Humayun Kabir Mamun21-Sep-14 18:05 
GeneralRe: My vote of 5 Pin
Mohammad A. Amer28-Oct-14 22:10
professionalMohammad A. Amer28-Oct-14 22:10 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.