I'm searching and looking if I can minimize this code. I want to sort order if the condition is true the content come first and then the image and if false the image come first.
<?php if(true): ?>
<div class="col-md-6">Text Content</div>
<div class="col-md-6">Image</div>
<?php else: ?>
<div class="col-md-6">Image</div>
<div class="col-md-6">Text Content</div>
<?php endif; ?>