I am trying to import file from xml to word press i need to know waht is sturcture for importing the xml file into a page in wordpress
1 comment
Comments are closed.
I am trying to import file from xml to word press i need to know waht is sturcture for importing the xml file into a page in wordpress
Comments are closed.
WordPress has a full load of Importer Plugins that you can install from the
~/wp-admin/tools/import
screen. They will serve as nice reference.Then there’s Ralf Alberts @Ralf912 Importer skeleton on GitHub/Gist which you can take as reference. Please note that this skeleton uses namespaces and therefore requires PHP 5.3+, or a rewrite.
The main/important parts are the following:
Check if the request comes from
admin.php?import=...
Load Importer API (Importer API = Backendpage
admin.php?import=...
)Load the importer base class
Register your Custom Importer to WordPress by using
register_importer()
– Codex explanation