// Display post thumbnail above the title on pages
function my_add_thumbnail_to_pages() {
// For pages only
if ( ! is_page() ) {
return;
} ?>
<div class="my-page-header container clr"><?php // remove container class to make it span 100% ?>
<?php wpex_post_thumbnail( array(
'size' => 'full',
'alt' => wpex_get_esc_title(),
) ); ?>
</div>
<?php }
add_action( 'wpex_hook_page_header_before', 'my_add_thumbnail_to_pages' );