• I am using a article submitting site that submits articles that I have approved to my blog.
    I have a page that is called ARTICLES and I want them there, I have given them the right link http://www.mysite/articles but they are still submitting them in the HOME page.

    What should I do?

Viewing 8 replies - 1 through 8 (of 8 total)
  • I have a page that is called ARTICLES

    It is a Page or a Category?

    Thread Starter klauzer

    (@klauzer)

    It is a page.

    But I also have this categories:

    * Article Marketing
    * Online Business
    * SEO

    All new posts are going to appear on your Home page unless you use a custom query to exclude posts from 1 or more categories from appearing there.

    Thread Starter klauzer

    (@klauzer)

    Thanks, any idea how to do it?

    How to do what?

    Thread Starter klauzer

    (@klauzer)

    How to use a custom query to exclude posts from 1 or more categories from appearing there.

    Something like:

    <?php
    $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
    $args= array(
    	'cat' => -3,
    	'paged' => $paged
    );
    query_posts($args);
    ?>

    would exclude all posts in the category with the id 3 from appearing.

    http://codex.wordpress.org/Template_Tags/query_posts

    Thread Starter klauzer

    (@klauzer)

    Oh god this is to complicated for me. I don’t think I will manage this.

    I was told that it was something in the “Reading Settings” that should be changed. Something about the “static page”.

    It is so complicated with the script/code.

    Is there another way?

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Post in the right page.’ is closed to new replies.