Dashboard
PHP:
8.0.30
OS:
Linux
User:
hoozgot
/
/
home
/
hoozgot
/
www
/
theroadhogs
/
wp-content
/
themes
/
rock-star
📤 Upload
📝 New File
📁 New Folder
Close
Editing: sidebar-before-content.php
<?php /** * Before Content Sidebar * * @package Catch Themes * @subpackage Rock Star * @since Rock Star 0.3 */ if ( !is_active_sidebar( 'before-content' ) ) { //Bail early if no widgets are present in sidebar return; } /** * rock_star_before_before_content hook */ do_action( 'rock_star_before_before_content' ); ?> <aside id="before-content" class="widget-area" role="complementary"> <?php dynamic_sidebar( 'before-content' ); ?> </aside><!-- #before-content --> <?php /** * rock_star_after_before_content hook */ do_action( 'rock_star_after_before_content' );
Save
Cancel