Incorporating external JavaScript libraries into WordPressify is straightforward. By installing the npm script and adding it to the gulpfile.js, you can seamlessly enhance your project with additional functionality.
To manage the placement of JavaScript files effectively, WordPressify offers the flexibility to organize scripts for the header and footer sections:
/* -------------------------------------------------------------------------------------------------
Header & Footer JavaScript Bundles
-------------------------------------------------------------------------------------------------- */
const headerJS = [ './node_modules/jquery/dist/jquery.js' ];
const footerJS = [ './src/assets/js/**' ];
headerJS
array.footerJS
array. Only footer scripts undergo processing with Babel, supporting ES6. However, you can configure this behavior to apply Babel to both header and footer scripts if needed.To modify the Babel processing behavior for header and footer scripts, you can adjust the configuration settings. Note that changes made to the configuration require a build restart to take effect.
By following these guidelines, you can seamlessly integrate external JavaScript libraries into your WordPressify project, enhancing its functionality and customization options.