順番を入れ替えるには、子テーマを使って、Snow Monkey のテンプレートを上書きする必要があります。
子テーマを用意したら、
/themes/snow-monkey/templates/view/content-page.php
を
/themes/(子テーマ)/templates/view/content-page.php
にコピーします。
そして、
/themes/(子テーマ)/templates/view/content-page.php
内の
<?php
if ( get_option( 'mwt-display-child-pages' ) ) {
get_template_part( 'template-parts/child-pages' );
}
?>
を
<?php the_content(); ?>
の上に移動させてください。
デザイン的に、多少 CSS も追加が必要かもしれませんね。