Skip to content

sb-lc/wp-all-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 

Repository files navigation

#WP All Import & WP All Export API

##WP-All-Import API

Before import

#####pmxi_before_xml_import

  • Executed just before the import begins. Details

#####wpallimport_xml_row

  • Allows modification of each data record from the file before import. Details

After import

#####pmxi_saved_post

  • Invoked right after saving a post. Details

#####pmxi_after_post_import

  • Invoked after saving a post (??) Details

#####pmxi_after_xml_import

  • Executed when the entire import completes. Details

Custom fields (post meta)

#####pmxi_custom_field

  • Custom field values can be modified before save using this hook. Details

#####pmxi_update_post_meta

  • Called right after a custom field is saved. Use this if you need access to meta_id. Details

Choosing which records to import

#####wp_all_import_is_post_to_create

  • Indicate whether the post is to be created. Details

#####wp_all_import_is_post_to_update

  • Indicate whether the post is to be updated. Details

#####wp_all_import_is_post_to_delete

  • Indicate whether the post is to be deleted. Details

#####wp_all_import_specified_records

  • Allows specifing a list/range of records to import. Details

Images and attachments

#####pmxi_attachment_uploaded

  • Invoked right after an attachment was uploaded. Details

#####pmxi_gallery_image

  • Invoked right after an image was imported. Usefull if working with 3rd party plugins/themes that have a custom gallery format. Details

#####wp_all_import_image_filename

  • Allows customizing the names of imported images. Details

Other

#####pmxi_article_data

  • Allows modifying the post body content before save. Details

##WP-All-Export API

Misc

#####wp_all_export_csv_rows

  • Filter CSV rows to export. Details

#####wp_all_export_xml_rows

  • Filter XML rows to export. Details

#####wp_all_export_additional_data

  • Create additional fields for export. Details

About

WP All Import/Export API info

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages