Domanda elementare (come del resto la mia conoscenza di PHP): come faccio a includere due o più funzioni in una sola?

Per esempio, iniziamente ho
<?php comment_form(); ?>

ma devo combinare fra loro le seguenti:
<?php comment_form(array('comment_notes_after' => '')); ?>

<?php comment_form(array('title_reply'=>'Got Something To Say:')); ?>


posso fare così?
<?php comment_form(array('comment_notes_after' => ''),(array('title_reply'=>'Got Something To Say:')); ?>

Immagino di no.