cortejo
Version:
WordPress magazine/blog site with integrated CRM and e-commerce functionality
49 lines (42 loc) • 1.29 kB
JavaScript
/**
* Cortejo - WordPress Magazine Theme Package
*
* This package contains custom WordPress themes and configurations
* for a magazine/blog site with integrated CRM and e-commerce functionality.
*
* @author Ric Richardson
* @version 1.0.0
*/
;
module.exports = {
name: 'cortejo',
version: '1.0.0',
description: 'WordPress magazine/blog site with integrated CRM and e-commerce functionality',
// Theme paths
themes: {
maxwp: 'wp-content/themes/maxwp',
popularfx: 'wp-content/themes/popularfx'
},
// Custom plugins
plugins: {
hello: 'wp-content/plugins/hello.php'
},
// Installation helper
install: function() {
console.log('Cortejo WordPress Theme Package');
console.log('================================');
console.log('');
console.log('To use this package:');
console.log('1. Copy wp-content/ folder to your WordPress installation');
console.log('2. Activate the MaxWP or PopularFX theme');
console.log('3. Configure your WordPress settings');
console.log('');
console.log('Themes included:');
console.log('- MaxWP: Magazine theme');
console.log('- PopularFX: Blog theme');
}
};
// Auto-display help when required
if (require.main === module) {
module.exports.install();
}