This plugin was required for XeFramework. It added custom post types, taxonomies, fields and WPBakery Page Builder elements as they are Plugin Territory
functionalities.
Note: Its been deprecated after release of XeFramework v2.0.0
The first thing you want to do is copy the xe-core
plugin directory and change the name to something else (like, say, xurais-core
), and then you'll need to do a eight-step find and replace on the name in all the templates.
- Search for
'xe-core'
(inside single quotations) to capture the text domain. - Search for
_xe_core_
to capture all the function names. - Search for
Text Domain: xe-core
- Search for
Xe Core
(with a space before it) to capture DocBlocks. - Search for
xe-core-
to capture prefixed handles. - Search for
$xe_core
to capture global variables. - Search for
xe_opt
to capture theme global variables. - Search for
Xe_Core
to capture prefixed classes. - Search for
/xe-core
to capture theme folder names that are used inside plugin.
OR
- Search for:
'xe-core'
and replace with:'xurais-core'
- Search for:
_xe_core_
and replace with:xurais-core_
- Search for
Text Domain: xe-core
and replace withText Domain: xurais-core
- Search for
Xe Core
(with a space before it) and replace withXurais Core
- Search for
xe-core-
and replace withxurais-core-
- Search for
$xe_core
and replace with$xurais_core
- Search for
xe_opt
and replace withxurais_opt
- Search for
Xe_Core
and replace withXurais_Core
- Search for
/xe-core
and replace with/xurais-core
Then, update the header in xe-core.php
and change its name to your plugin directory name.
Now you're ready to go! The next step is easy to say, but harder to do: make an awesome WordPress theme. :-)
Good luck!