X7ROOT File Manager
Current Path:
/home/magneti1/public_html/wp-content/themes/spacious
home
/
magneti1
/
public_html
/
wp-content
/
themes
/
spacious
/
ðŸ“
..
📄
404.php
(1023 B)
📄
archive.php
(808 B)
ðŸ“
assets
📄
comments.php
(2.75 KB)
📄
content-blog-full-content.php
(954 B)
📄
content-blog-image-large.php
(1.53 KB)
📄
content-blog-image-medium.php
(1.61 KB)
📄
content-page.php
(1.43 KB)
📄
content-single.php
(1.55 KB)
📄
content.php
(1.85 KB)
ðŸ“
css
ðŸ“
font-awesome
📄
footer.php
(927 B)
📄
functions.php
(18.12 KB)
ðŸ“
genericons
📄
gulpfile.js
(2.93 KB)
📄
header.php
(7.98 KB)
📄
home.php
(858 B)
ðŸ“
images
ðŸ“
img
ðŸ“
inc
📄
index.php
(795 B)
ðŸ“
js
ðŸ“
languages
📄
navigation.php
(1.29 KB)
📄
no-results.php
(1022 B)
📄
package-lock.json
(297.23 KB)
ðŸ“
page-templates
📄
page.php
(897 B)
📄
readme.txt
(19.51 KB)
📄
screenshot.jpg
(104.98 KB)
📄
search.php
(812 B)
📄
searchform.php
(478 B)
📄
sidebar-footer.php
(2.84 KB)
📄
sidebar-left.php
(1.05 KB)
📄
sidebar.php
(1.23 KB)
📄
single.php
(1.64 KB)
📄
style-editor-block.css
(11.24 KB)
📄
style-rtl.css
(70.38 KB)
📄
style.css
(74.01 KB)
📄
theme.json
(266 B)
Editing: sidebar-footer.php
<?php /** * The Sidebar containing the footer widget areas. * * @package ThemeGrill * @subpackage Spacious * @since Spacious 1.0 */ /** * The footer widget area is triggered if any of the areas * have widgets. So let's check that first. * * If none of the sidebars have widgets, then let's bail early. */ if ( ! is_active_sidebar( 'spacious_footer_sidebar_one' ) && ! is_active_sidebar( 'spacious_footer_sidebar_two' ) && ! is_active_sidebar( 'spacious_footer_sidebar_three' ) && ! is_active_sidebar( 'spacious_footer_sidebar_four' ) ) { return; } if ( get_theme_mod( 'spacious_footer_widget_column_select_type', 'four' ) == 'one' ) { $footer_column_one = 'tg-column-full'; $footer_column_two = ''; $footer_column_three = ''; $footer_column_four = ''; } elseif ( get_theme_mod( 'spacious_footer_widget_column_select_type', 'four' ) == 'two' ) { $footer_column_one = 'tg-one-half'; $footer_column_two = 'tg-one-half tg-one-half-last'; $footer_column_three = ''; $footer_column_four = ''; } elseif ( get_theme_mod( 'spacious_footer_widget_column_select_type', 'four' ) == 'three' ) { $footer_column_one = 'tg-one-third'; $footer_column_two = 'tg-one-third tg-column-2'; $footer_column_three = 'tg-one-third tg-after-two-blocks-clearfix'; $footer_column_four = ''; } elseif ( get_theme_mod( 'spacious_footer_widget_column_select_type', 'four' ) == 'four' ) { $footer_column_one = 'tg-one-fourth tg-column-1'; $footer_column_two = 'tg-one-fourth tg-column-2'; $footer_column_three = 'tg-one-fourth tg-after-two-blocks-clearfix tg-column-3'; $footer_column_four = 'tg-one-fourth tg-one-fourth-last tg-column-4'; } ?> <div class="footer-widgets-wrapper"> <div class="inner-wrap"> <div class="footer-widgets-area clearfix"> <div class="<?php echo $footer_column_one; ?>"> <?php // Calling the footer sidebar if it exists. if ( ! dynamic_sidebar( 'spacious_footer_sidebar_one' ) ): endif; ?> </div> <?php if ( $footer_column_two != '' ) { ?> <div class="<?php echo $footer_column_two; ?>"> <?php // Calling the footer sidebar if it exists. if ( ! dynamic_sidebar( 'spacious_footer_sidebar_two' ) ): endif; ?> </div> <?php } ?> <?php if ( $footer_column_three != '' ) { ?> <div class="<?php echo $footer_column_three; ?>"> <?php // Calling the footer sidebar if it exists. if ( ! dynamic_sidebar( 'spacious_footer_sidebar_three' ) ): endif; ?> </div> <?php } ?> <?php if ( $footer_column_four != '' ) { ?> <div class="<?php echo $footer_column_four; ?>"> <?php // Calling the footer sidebar if it exists. if ( ! dynamic_sidebar( 'spacious_footer_sidebar_four' ) ): endif; ?> </div> <?php } ?> </div> </div> </div>
Upload File
Create Folder