Why do I get undefined function export_wp()?

The function lives in wp-admin/includes/export.php and is only included on the export admin page (see source).

If you want to use it on other pages, you’ll have to include it manually:

require_once( ABSPATH . 'wp-admin/includes/export.php' );

Leave a Comment