• Maybe I am too dump, but how can I select on which page I want to publish my posts?

    Actually they are all going to the “Home” page.
    I have searched, but the only thing I have found was the “page2cat” plugin, which I installed, but even adding categories to pages and so on it doesn’t work.

    Does anyone has a hint? Thank you in advance.

    Azador

Viewing 3 replies - 1 through 3 (of 3 total)
  • You can use a query in your page.php file. Something like this…

    <?php if (is_page('pagename')) {
    echo('<ul>');
    query_posts('cat=1&amp;showposts=-1&amp;orderby=title&amp;order=ASC');
    if (have_posts()) : while (have_posts()) : the_post();
    echo('<li><a href="');
    the_permalink();
    echo('">');
    the_title();
    echo('</a></li>');
    endwhile; endif;
    echo('</ul>');
    }
     ?>
    Thread Starter azador

    (@azador)

    and without code hacking? Is there no option/button/something else on the admin site/dashboard?

    This isn’t hacking the WordPress code. It is editing a theme. There is not standard WP option for this.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Is it able to choose the page I want to publish the post?’ is closed to new replies.