• Resolved nwplanet

    (@nwplanet)


    Hi, I’m importing some pages content from a legacy CMS which had descriptions for each of the pages, I’d like to make sure this gets transferred over as the excerpt of a Page, but it’s not showing during the Import wizard (I notice it shows when it’s Posts not Pages)

    Is there a way I can import the old description as the new excerpt even though these are coming in as new Pages?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author WP All Import

    (@wpallimport)

    Hi @nwplanet

    WordPress doesn’t support excerpts for Pages by default (you’ll notice that it’s missing from Screen Options even when manually creating a page). You can add support for it by adding this code to your child themes functions.php file:

    add_post_type_support( 'page', 'excerpt' );

    Once that’s done, you’ll see the excerpt field in WP All Import for pages as well.

    • This reply was modified 7 years, 3 months ago by WP All Import.
    Thread Starter nwplanet

    (@nwplanet)

    nice one, thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How do I import into excerpt of a Page’ is closed to new replies.