Advertisement
nextnedramona

PHP publish TwentySeventeen

Sep 14th, 2020 (edited)
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.52 KB | None | 0 0
  1. <?php
  2. /**
  3.  * Displays header media
  4.  *
  5.  * @package WordPress
  6.  * @subpackage Twenty_Seventeen
  7.  * @since Twenty Seventeen 1.0
  8.  * @version 1.0
  9.  */
  10.  
  11. ?>
  12. <div class="custom-header">
  13.  
  14.         <div class="custom-header-media">
  15.             <?php
  16.             if( is_home() || is_front_page() ) {
  17.                 echo do_shortcode('[smartslider3 slider="2"]');
  18.             } else {
  19.                 echo do_shortcode('[smartslider3 slider="3"]');
  20.             }
  21.             ?>
  22.         </div>
  23.  
  24.     <?php get_template_part( 'template-parts/header/site', 'branding' ); ?>
  25.  
  26. </div><!-- .custom-header -->
  27.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement