1

I wonder how to use webpack while bulding theme for WordPress the correct way. Everything is pretty easy until I have to make some unusual things. So in the most simple scenario I just have some JS files in /assets/js/ and all of them are bundled to dist/bundle.js The obvious thing is loading dist/app.js in the theme with wp_enqueue_script.

But let's say I got 6 files in the assets/js:

  • A.js
  • B.js
  • C.js
  • D.js
  • E.js
  • main.js

And now I want to load A.js and E.js in the footer (so normally I would use in_footer parameter as true in the wp_enqueue_script),

B.js in the header (so now in_footer would be false),

C.js only on the front page (using IF nad is_front_page())

and D.js with script parameters containing homepage url (using wp_register_script then wp_localize_script and finally wp_enqueue_script).

What is the right and clean way to load these files in WordPress? Now all these files are getting bundled to one file bundle.js so I have no option to decide which one will be in header, footer, with parameters or being loaded async/defer. Do I need multiple webpack outputs? How to get these done in the correct way?

1
  • 2
    you need multiple files if you want them in multiple places. That you used webpack to build the singular file is completely irrelevant, all that matters is the end result. If you need help on how to make webpack output 6 bundles instead of 1 though then that's not a WordPress question, you should ask on stackoverflow instead.
    – Tom J Nowell
    CommentedOct 4, 2023 at 12:44

1 Answer 1

1

What is the right and clean way to load these files in WordPress?

The same way as you've always done it, wp_enqueue_script. WordPress is unaware that webpack created the javascript file, and it is just that, a javascript file. This is true wether it contains jquery, was written by hand, or was created by a program such as webpack/vite/grunt/etc, the contents of the JS file are irrelevant.

But let's say I got 6 files in the assets/js:

...

Do I need multiple webpack outputs?

Yes, if you want to enqueue 6 things in different places, you need 6 JS files to enqueue. Only the final built JS matters here, and you've stated there's a single built bundle file, so you have 1 JS file, not 6.

How to get these done in the correct way?

This is not a WordPress question, it's a webpack question, you'll need to define 6 entry points and 6 outputs.


Fundamentally, it's easy to see React applications or Vue.js code, and the build toolchain and struggle to understand how that now fits into the classic toolchain. This is because we forget that these are just a means to an end and the final output is still just a javascript file that does stuff.

That JS file may be difficult or impossible to read, and do things we don't understand fully, but it's still a plain javascript file, much like the pre-bundle JS files with jQuery libraries we used to write.

WordPress deals in this plain JS files, and has no insight into what processes were used to produce them, it can't disassemble your bundle and execute some parts but not others.

Likewise your bundle of JS contains all your code, and you have options outside of WordPress for when and where to execute code such as deciding at runtime if code should run, running code on DOM events, etc

For example, you mentioned C.js should only run on the frontpage, so if the contents of C.js are wrapped in a function then called conditionally, you can use the body class to test for the frontpage/home classes, or use PHP to insert a boolean value that the JS can read, eliminating the need for C.js to be separated out of the bundle. D.js needing script parameters is just your bundle needing script parameters, it's the code in the file not the file itself that requires them. You could also use a similar trick for files in the footer by putting them too in functions and calling them on a DOM event such as DOM ready. These aren't canonical official suggestions though, and there are lots of other ways to do it, just don't limit yourself to a WordPress specific way as in a lot of cases there isn't one.

    Start asking to get answers

    Find the answer to your question by asking.

    Ask question

    Explore related questions

    See similar questions with these tags.