Home › Forums › Pro Support › Noob help › Reply To: Noob help
August 29, 2016 at 5:19 pm
#612
Keymaster
You would have to use your theme hooks. For example, in GeneratePress we have GP Hooks, so you could do this in the “Inside Content Container” hook:
<?php if ( is_front_page() ) : ?>
<?php echo do_shortcode( '[wp_show_posts id="xx"]' ); ?>
<?php endif; ?>