Viewing 2 replies - 1 through 2 (of 2 total)
  • I think I have found a method that will work that requires you to add some code to your functions.php file within your theme.

    If you add this to your functions.php file:

    add_action( 'admin_init', 'posts_order_wpse_91866' );
    
    function posts_order_wpse_91866()
    {
        add_post_type_support( 'post', 'page-attributes' );
    }

    It will then give you the ability to edit the order of a post manually much like you can do with a page. So you can now edit with a post or within the quick edit and assign your own value. The lower the number, the higher up it will show. This works because the plugin is using menu_order to order the posts.

    Let me know if you need further clarification.

    Go to “screen options” and change “Number of items per page:”

    ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Moving posts over multiple pages?’ is closed to new replies.