By gnr5 on
Hi Guys,
How do I create a new content type and display it? I want create another Story, but I want to display that content in another page without displaying the content in the front page.
For example. The front page has News Articles. I want to create a second page that displays only Interviews but doensn't display the News Articles.
Thanks,
you can view my work at http://24.233.170.227/drupal
Comments
This explains how to create
This explains how to create more pages with teaser lists like the front page.
http://drupal.org/handbook/modules/taxonomy
The short version is:
You set up categories for your stories:
- You got to the categories menu and set up a new vocabulary, lets call it "Sections"
- You specify that this vocabulary will apply to the content type "story" (or to more content types)
- You add terms (categories) to the vocabulary, such as "News" and "Interviews"
Next, you tag your stories with those categories:
- Whenever you edit a story you will see a selection list to tag this story as "News" or "Interviews"
Now, you have the teaser lists you wanted:
- Go back and look at your "News" and "Interviews". If you hover the mouse you will see that they have numeric IDs, let's sat 3 and 4.
- /taxonomy/term/3 is the link for your News page and /taxonomy/term/4 is the link for your Interviews page
Ugly? You enable the path module, go to the "URL aliases" menu and change these two paths to /news and /interviews.
Another option
Another option would be to use CCK to create the new content type and then use views to create the page that displays the teasers.