If you’re comfortable with php, you can move the featured pages after the page’s text, by using this snippet.
In your case, you need to use the case study on “moving the featured pages to the top of the home page”, but instead of hooking it to the __before_header
hook, you need to hook onto __after_main_container
.
So the code becomes:
// Move featured pages below home page text
add_action ( 'wp_head' , 'move_my_fp');
function move_my_fp() {
//we unhook the featured pages
remove_action ( '__before_main_container', array( TC_featured_pages::$instance , 'tc_fp_block_display'), 10 );
//we then re-hook the featured pages after the page content
add_action ( '__after_main_container', array( TC_featured_pages::$instance , 'tc_fp_block_display'), 10 );
}
You may also want to suppress the <hr>
after the featured pages with:
hr.__after_main_container {
display: none;
}
in your Custom CSS and add a new <hr>
to your text in the home page, so that the text is separated from the features.
If you’ve never used php before, but want to dive in, check out How to customize Customizr.