• Hi,

    I have more than 400 pages on my Word Press CMS project.

    I want to edit multiple pages @ one time.

    Do we have any plug-in which allow editing multiple pages one time.

    I have seen this feature with next & previous button in some applications.

    – Thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • You can edit certain page information and data in bulk with WP. Just log in to your admin section, go to Pages, check the pages you’d like to edit, select “Bulk edit” from the action drop-down box and click Ok.
    You won’t be able to modify page content with that method, but it is a start.

    Thread Starter hiko

    (@hiko)

    Hi,
    Thanks for reply.

    Yes I know we can do mass update

    I need to edit multiple pages from edit screen and move next, previous using pagination.

    I am looking for plug-in like this and I am sure WordPress has plug-in.

    – Thanks

    Yes I know we can do mass update

    Ok. I don’t know of a plugin that would let you use pagination in the backend (wp-admin). However, you could add this PHP code to your page templates inside the loop:

    <?php edit_post_link('Edit page', '<p>', '</p>'); ?>

    right after this:

    the_content();

    That code will insert an “Edit Page” link in your pages which will only be visible to users with page editing capabilities.
    After that, you can add page navigation. Here‘s a very thorough tutorial about it.

    That way, you will be able to go through your pages from the frontend (blog or site) and edit the ones you desire.

    Cheers!

    Edit: The code I shared also works for posts, in case you want to do the same thing there.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Multiple page edits using next and previous’ is closed to new replies.