How To Create News Items in Drupal – Part 2
Posted by fbloggs in Content Management, DrupalThis is a continuation of the previous post that explained how to create a custom content type called News, and show News items using the Views module.
Creating A News Page with a Monthly News Archive Block
This post explains how to create a page showing just the News content type, how to link that page to the Primary menu, and how to show a block with a list of archived News items. It assumes you’ve already followed the steps in the previous post.
We accomplish all these tasks using the Views contributed module.
- First, we use the Views module to create a page view to show most recent 10 news items on the page, as follows:
- Login as site admin again
- Go to Administer/Site building/Views.
- Click Add to create a new View
- View name: News_page , View description: Page showing recent news, View tag: News, View type: Node. Click Next.
- Select ‘page’ in dropdown box, click ‘Add Display’. This is what creates a whole page, instead of a block, for example.
- We want the user to be able to page back and forth through each set of 10 news items, so in the first column, click on ‘no’ next to ‘Use pager’ . Scroll down to the radio buttons for this option and click on ‘full pager’.
- Next, we’ll repeat a lot of the steps we took for creating a block view – selecting the fields for the view, and the filter to choose only published News content:
- Click on the ‘+’ sign next to Fields. Scroll down and select Node: Post date and Node: Title, then click the Add button . The next steps take you through more options for each of these fields.
- Remove the label of ‘Post date’ (clear the text). This prevents the words ‘Post date’ showing next to the date. Click ‘Update default display’. You should now see an interface asking you to configure the field ‘Node:Title’.
- Remove the label of ‘Title’ (clear the text). Check the box ‘Output this field as a link’ , scroll down and check ‘Link this field to its node’. This makes the News item’s Title a clickable link that links to the full article (node). Click ‘Update Default display’.
- You should see a ‘Live preview of all content you’ve created. Let’s filter it by ‘news’ only.
- Cick the ‘+’ sign next to Filters. Scroll down and check Node: Published and Node: Type. These options let us choose to display only Published content (Node: Published = Y), and only news (Node: Type = ‘news’). Then click Add.
- Select ‘Yes’ for Published items, click Update, then select ‘Is one of’ and check ‘News’, then click Update.
- Now let’s sort the news items by most recent first (descending order). Click on the ‘+’ sign next to Sort criteria.
- Check Node: Post date, click Add.
- Select Descending, click Update.
- Let’s place this page on the Primary Menu. This is the menu that (generally) appears at the top of your page, depending on your active Drupal theme.
- Scroll down until you see the heading Page Settings in the first column.
- Click on None (next to Path), and type: news . This is appended to the rest of your site’s url to make the full path for this page. We will also refer to this name when we create our News Archive block.
- The next option lets you link the page to a menu item:
- Click on ‘No Menu’ (next to Menu)
- Scroll down and click on Normal menu entry. A set of input controls appears to the right of this option. Proceed…
- Type the title for this menu entry. I chose ‘News’ because I like short menu item text, but feel free to choose whatever you want- perhaps, Latest News.
- Type a description. This appears when a user hovers over the menu item. It might appear somewhere else, too, I’m not sure.
- Click on the dropdown box under the word ‘Menu:’
- Select Primary Menu. That’s it!
- Finally, click the Save button (just above the words ‘Live Preview’.)
Create The News Archive Block
Ok – the next step is to create a block of Archived news articles – much like the standard Archive block that comes with Drupal. The only difference is that block includes all content types, while we want to include just our news content type. So this is really easy- we clone the existing Archive view that comes with the Views module and just add a filter to include only news content. Here are the steps in detail:
- Go to Administer/Site building/views again.
- Look for the existing view called Monthly Archive (it has a path of archive) – it’s the first one in the list in my install of Drupal. Click on the Clone link on the right.
- Change the view name from archive to newsarchive, and change the view description similarly.
- Click the next button to continue on to configure the block view.
- Add the filter for news content only:
- Click on the + sign next to Filters. Scroll down to see the list of available filter fields, find the Node: type field, and select it.
- Scroll down to configure the Node type and select the news content type.
- You can click the Live Preview button now, and you should see something like November 2009 (9) – at least that’s what I see, because that’s the only month I have any news items published in. If you haven’t written any news content yet, then nothing will show here.
- Before we exit this page, there is, as Columbo would say, just one more thing. You may have noticed that the Archive list we cloned has 3 vertical tabs on the left – Default, Page and Block. In the previous steps we were changing the default settings, which essentially ripples them through to both the Page and Block settings. Personally, I intensely dislike this interface. It is quite confusing, because different options appear depending on which tab is active, and it’s not self-evident which tab is active. Anyway, we are going to make a minor change to the block view, so click on the block tab .
- Scroll down until you see Block settings. If you do not see this heading then you did not click on the block tab in the previous step, so try again!
- Click on the text next to Admin, and type ‘News Archive List’ . This is text appears when we are placing blocks on our pages, and if we don’t change it we will have two blocks with the same title – the one we cloned from, and this one – which makes it a pain to know which one we want to place somewhere.
- Save your work – click the Update button, followed by the Save button below it.
Place the News Archive Block on The News Page
You may want to place your News Archive block on every page, but just for the sake of this tutorial, let’s place it only on the news page.
- Go to Administer/Site Building/Blocks
- Find your News Archive List block. It should be in the list with the heading Disabled, the last list on the page. Click on the Dropdown box next to it, and select the area on the page you want it to appear. The names of the areas will depend on the active theme you are using. There may be one called ‘right sidebar,’ which would be appropriate. If not, choose some other area.
- Scroll to the bottom of the page and click Save Blocks (IMPORTANT!!! – click Save Blocks before doing the next step – otherwise you may lose your ‘change’).
- Ok – now you have to find your block in the lists on the page, because it has moved from the ‘disabled’ list to whatever area title you chose. Once you find it, click on the Configure link.
- Scroll down to Show Block on Specific Pages, click the ‘Show on only the listed pages’ radio button, then type news in the text area below. (news- not News, not ‘news’, not <news>). If you recall, this is the node name of our news page, which we specified when we created the News page view (above).
- Save your work.
Ok – we are done.If you go to my Drupal sandbox site, you’ll see the News menu item at the top. Click on it and you’ll see some bogus news items, along with the News Archive List in a block on the right hand side. Notice that this block only appears on the news page, as per our specs.
Whew- this is a lot of text to explain something reasonably simple. Maybe next time I’ll make a youtube video instead.
Tags: Content Management, Drupal

Entries (RSS)