I realise this is perhaps more of a php question rather than WP-specific, but figure/hope it's relevant.
I annotate my code probably more than is needed (because I know relatively little about this, and it helps me to better understand).
I'm wondering how best to deal with these two instances...
In:
$query->set( 'post__not_in', array(
41, // page title
43, // /page title
) );
BBEdit syntax highlight is ok, and the code works.
Whereas in:
wp_list_pages( array(
'exclude' => '
41, // page title
43, // page title
',
) );
BBEdit syntax highlight is incorrect, but the code works.
Is it ok (reliable) to include such comments - and is there a better alternative?