How to Use Parameters with a Do_Action Function Within PHP Tags

First of all, let’s take a look at do_action docs. As we can read there, this is the function that:

Execute functions hooked on a specific action hook.

And that’s the way to use it:

do_action( string $tag,  $arg = '' )

So the first param is the tag (or the hook name). And then you can pass $arg (or rather $args).

And how to pass that args?

Well… It depends on action. Some of them take no args. Some of them take only one, and some of them take many args. Here’s examples:

// this action takes no args
do_action( 'foo' );

// this action takes one arg
do_action( 'bar', $param );

// and this takes few args:
do_action( 'foobar', $param1, $param2, $param3 );

In your case, webcomic_integrate_landing_page takes only one param, which should be an array (as we can read here):

do_action( 'webcomic_integrate_landing_page', array $args );

So if you want to pass any args in there, here’s how:

do_action( 'webcomic_integrate_landing_page', array( 'webcomic_comments' => true, 'webcomic_meta' => false ) );