• I installed the plugin that orders posts in whatever way you want, but whenever I add the specified code:

    query_posts(“orderby=menu_order&order=ASC”);

    to the index.php file, it causes every single page of my site to show only one post (a welcome post I made in my main category).

    Any help? My site is https://inthisskin.net/epilogue. The main page (with the “Welcome!” post) is what every other page looks like when I add the above code.

Viewing 2 replies - 1 through 2 (of 2 total)
  • i had a similar problem where the paged results were not showing; i was getting the same 10 results with every click of NEXT>> or <<PREVIOUS. i believe the code is too rigid to allow the paged results to display.

    i made the following change and it worked;
    instead of
    query_posts(“&orderby=menu_order&order=ASC”);
    try
    query_posts($query_string . ‘&orderby=menu_order&order=ASC’);

    if you want to change the number of posts showing per page, do this from your dashboard (Options–>Reading) instead of pushing it through here with somethin like ‘&showposts=10’

    AndreSC

    (@andresc)

    the aStickyPostOrderER plugin is another option, it gives you a interface in the admin area where you can manually arrange ‘sticky’ posts per category or tag

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Post Order’ is closed to new replies.