How to get the Post Carousel below the Masthead

How to get the Post Carousel(The “Post Carousel” is an element located above the masthead) below the Masthead Within the post

Hi,

To achieve that, create file wp-header.php in wp-content/themes/x-child/framework/legacy/cranium/headers/views/ethos and copy the code below into that file.

<?php

// =============================================================================
// VIEWS/ETHOS/WP-HEADER.PHP
// -----------------------------------------------------------------------------
// Header output for Ethos.
// =============================================================================

?>

<?php x_get_view( 'global', '_header' ); ?>

  <?php x_get_view( 'global', '_slider-above' ); ?>

  <header class="<?php x_masthead_class(); ?>" role="banner">    
    <?php x_get_view( 'global', '_topbar' ); ?>
    <?php x_get_view( 'global', '_navbar' ); ?>
    <?php x_get_view( 'ethos', '_breadcrumbs' ); ?>
    <?php x_get_view( 'ethos', '_post', 'carousel' ); ?>
  </header>

  <?php x_get_view( 'global', '_slider-below' ); ?>
  <?php x_get_view( 'ethos', '_landmark-header' ); ?>

Please note that you need to create the folders in your child theme as they don’t exist by default.

For mroe information kindly refer to the link below.

Hope that helps.