そうですね、これは子テーマでの対応となります。
/snow-monkey/templates/view/content-post.php
を /子テーマ/templates/view/content-post.php
にコピーして、その中の
<div class="c-entry__meta">
<?php get_template_part( 'template-parts/entry-meta' ); ?>
</div>
を消して、
<?php
if ( get_option( 'mwt-display-profile-box' ) ) {
get_template_part( 'template-parts/profile-box' );
}
?>
の上に
<?php get_template_part( 'template-parts/entry-meta' ); ?>
ペーストしてみてください。