Can i make posts on diffetent pages in wordpres?

14 replies
  • SEO
  • |
I want to make posts on different pages such like download, about, articles etc....
Can I do it if yes then how??if there exists a plugin kindly write down the link here
#diffetent #make #pages #posts #wordpres
  • Profile picture of the author nettech
    Just log into the wordpress dashboard and the first option you see shoud allow you to make a post.

    This page should help File:writepost.png WordPress Codex

    Thanks
    Zaheer
    Signature

    Thanks
    Zaheer

    {{ DiscussionBoard.errors[1420357].message }}
  • Profile picture of the author hostinpk.com
    nettech@ but I am not asking about the post on home page but on other pages that I have already created.
    {{ DiscussionBoard.errors[1420389].message }}
  • Profile picture of the author nettech
    Sorry yaar, you've completely lost me!
    Signature

    Thanks
    Zaheer

    {{ DiscussionBoard.errors[1420401].message }}
    • Profile picture of the author hostinpk.com
      Originally Posted by nettech View Post

      Sorry yaar, you've completely lost me!
      Sorry, but i am new in this filed. So, please guide me again.
      Thanks in advance
      {{ DiscussionBoard.errors[1420426].message }}
  • Profile picture of the author hostinpk.com
    Please help me. Any one can guide me. any help will be highly appriciated
    {{ DiscussionBoard.errors[1424527].message }}
  • Profile picture of the author hostinpk.com
    Amazing 35 views and only 2 replies????
    Is there anyone to help me??
    {{ DiscussionBoard.errors[1429227].message }}
  • Profile picture of the author jasonmorgan
    if I am reading you correctly, you want to have different pages on your site and you want to publish new posts that are only posted on those pages.

    the good news, yes you can do this

    the bad news, you can't do this with the default wordpress theme or most themes currently available.

    wordpress can do just about anything but when it comes to doing the really cool stuff or breaking out of the typical blog box you need to develop and write your own themes. I doubt you are going to find a plug-in that can do something like this.

    one of the first things I did when I started with IM was learn how to write my own WP themes... and it's probably one of the smartest things I've ever done.
    Signature

    I'm all about that bass.

    {{ DiscussionBoard.errors[1429642].message }}
    • Profile picture of the author Intrepreneur
      You can take your archives template and turn it into a page template. Then put in the code that calls for posts from a specific category to be displayed on that page.

      It's hard if you don't understand wordpres code.
      {{ DiscussionBoard.errors[1429652].message }}
  • Profile picture of the author jasonmorgan
    You can take your archives template and turn it into a page template. Then put in the code that calls for posts from a specific category to be displayed on that page.
    check out the big brains on Intrepreneur
    Signature

    I'm all about that bass.

    {{ DiscussionBoard.errors[1429660].message }}
    • Profile picture of the author Intrepreneur
      Originally Posted by jasonmorgan View Post

      check out the big brains on Intrepreneur
      LOl these brains are only new. I only discovered this kind of stuff recently.. it all started with &exclude then progressed from there. Now I can do just about anything I need to with WP :-)
      {{ DiscussionBoard.errors[1429721].message }}
  • Profile picture of the author hostinpk.com
    Thanks for replies. Can anyone show me a demo for this idea???
    {{ DiscussionBoard.errors[1431113].message }}
  • I can't make heads or tales of this question. But WordPress does allow you to assign a single post to multiple categories if for some reason you wanted to do that. I wouldn't but you can.
    {{ DiscussionBoard.errors[1431194].message }}
  • Profile picture of the author jasonmorgan
    copy your page.php file, call it whatever you want or create a new php file

    erase all of the stuff (if you copied page.php) that is there and replace it with this....

    <?php
    /*
    Template Name: Test Category
    */
    ?>

    <?php query_posts('category_name=test'); ?>

    <?php if (have_posts()) : ?>

    <?php while (have_posts()) : the_post(); ?>

    <div <?php post_class('entry') ?> id="post-<?php the_ID(); ?>">

    <?php the_title(); ?>

    <?php the_content(); ?>

    </div>

    <?php endwhile; ?>

    <?php endif; ?>

    <?php wp_reset_query(); ?>
    this is quick and dirty without testing but should work.

    write a new post, assign the category 'Test'

    create a new page, call it whatever you want, don't add any content too it... just a blank page. On the right hand side of the screen you should see the option to select page templates, select the one that is called 'Test Category' and save your page.

    when you view the page you should only see the post you just created and only posts from the category 'test'

    like I said, this is quick and dirty and I haven't tested it, no styling or anything fancy, just a barebones loop that should only show a single category.
    Signature

    I'm all about that bass.

    {{ DiscussionBoard.errors[1431555].message }}
  • Profile picture of the author busoppreviews
    Actually this is something I would like to do too so I look forward to seeing if he is successful

    Thanks
    Signature

    {{ DiscussionBoard.errors[1438342].message }}

Trending Topics