function my_disable_page_header( $bool ) { if ( is_page() ) { $bool = false; // this will allow meta options to…
function my_page_featured_image() { if ( is_page() && has_post_thumbnail() ) { echo ''. get_the_post_thumbnail() .''; } } add_action( 'wpex_hook_main_top', 'my_page_featured_image', 10…