Top bar across multisite

Hello,

I have X Theme running within a multisite environment, with each network site running the same theme and sharing the same child theme.

Is there a way that I can hard code the top bar (including content) into the child theme’s functions.php so it is shared across all of the network sites?

Hi Tyler,

If it’s using the same child theme then it will take effect on all sites.

To add a topbar you can try adding this in your child theme’s functions.php file

function add_topbar() {   
    ?>
 <div class="my-topbar">
  ADD YOUR CONTENT HERE
</div>

<?php    
}}
add_action( 'x_after_view_global__slider-above', 'add_topbar', 10 );

For future reference on how to create code like this. Please refer to the link below

Hope that helps

Thanks very much, Paul! Worked like a charm :wink:

You’re welcome! :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.