at path:
ROOT
/
wp-content
/
themes
/
whizz
/
footer.php
run:
R
W
Run
assets
DIR
2025-08-14 14:58:42
R
W
Run
include
DIR
2025-08-14 14:58:42
R
W
Run
one-click-import
DIR
2025-08-14 14:58:42
R
W
Run
templates
DIR
2025-08-14 14:58:42
R
W
Run
vc_templates
DIR
2025-08-14 14:58:42
R
W
Run
vendor
DIR
2025-08-14 14:58:42
R
W
Run
woocommerce
DIR
2025-08-14 14:58:42
R
W
Run
404.php
1.1 KB
2025-08-14 14:58:42
R
W
Run
Delete
Rename
archive.php
9.18 KB
2025-08-14 14:58:42
R
W
Run
Delete
Rename
author.php
10.53 KB
2025-08-14 14:58:42
R
W
Run
Delete
Rename
category.php
9.08 KB
2025-08-14 14:58:42
R
W
Run
Delete
Rename
comments.php
2.46 KB
2025-08-14 14:58:42
R
W
Run
Delete
Rename
composer.json
65 By
2025-08-14 14:58:42
R
W
Run
Delete
Rename
composer.lock
1.95 KB
2025-08-14 14:58:42
R
W
Run
Delete
Rename
error_log
39.65 KB
2026-06-03 17:30:53
R
W
Run
Delete
Rename
footer.php
4.47 KB
2025-08-14 14:58:42
R
W
Run
Delete
Rename
functions.php
4.38 KB
2025-08-14 14:58:42
R
W
Run
Delete
Rename
header.php
13.09 KB
2025-08-14 14:58:42
R
W
Run
Delete
Rename
index.php
12.99 KB
2025-08-14 14:58:42
R
W
Run
Delete
Rename
page-hovers.php
16.44 KB
2025-08-14 14:58:42
R
W
Run
Delete
Rename
page.php
6.16 KB
2025-08-14 14:58:42
R
W
Run
Delete
Rename
page_with_sidebar.php
7.31 KB
2025-08-14 14:58:42
R
W
Run
Delete
Rename
readme.txt
1.46 KB
2025-08-14 14:58:42
R
W
Run
Delete
Rename
screenshot.png
82.91 KB
2025-08-14 14:58:42
R
W
Run
Delete
Rename
searchform.php
363 By
2025-08-14 14:58:42
R
W
Run
Delete
Rename
single-events.php
12.41 KB
2025-08-14 14:58:42
R
W
Run
Delete
Rename
single-portfolio.php
16 KB
2025-08-14 14:58:42
R
W
Run
Delete
Rename
single.php
13.46 KB
2025-08-14 14:58:42
R
W
Run
Delete
Rename
style.css
2.56 KB
2025-08-14 14:58:42
R
W
Run
Delete
Rename
tag.php
8.81 KB
2025-08-14 14:58:42
R
W
Run
Delete
Rename
taxonomy-portfolio-category.php
3.88 KB
2025-08-14 14:58:42
R
W
Run
Delete
Rename
taxonomy-portfolio-client.php
5.62 KB
2025-08-14 14:58:42
R
W
Run
Delete
Rename
taxonomy-whizzy-category.php
3.73 KB
2025-08-14 14:58:42
R
W
Run
Delete
Rename
error_log
up
📄
footer.php
Save
<?php /** * * Footer * @since 1.0.0 * @version 1.0.0 * */ if( is_page() || is_home()) { $post_id = get_queried_object_id(); } else { $post_id = get_the_ID(); } // page options $meta_data = get_post_meta( $post_id, '_custom_page_options', true ); $meta_data_portfolio = get_post_meta( $post_id, 'whizz_portfolio_options', true ); $meta_data_events = get_post_meta( get_the_ID(), 'whizz_events_options', true ); $class_footer = !empty($meta_data['fixed_transparent_footer']) || is_404() || (!empty($meta_data_portfolio['fixed_transparent_footer']) || !empty($meta_data_events['fixed_transparent_footer']))? ' fix-bottom' : ''; $enable_footer_copy = isset($meta_data['enable_footer_copy_page']) ? $meta_data['enable_footer_copy_page'] : cs_get_option( 'enable_footer_copy' ); $enable_footer_widgets = isset($meta_data['enable_footer_widgets_page']) ? $meta_data['enable_footer_widgets_page'] : cs_get_option( 'enable_footer_widgets' ); $enable_footer_white = isset($meta_data['enable_footer_white_page']) ? $meta_data['enable_footer_white_page'] : cs_get_option( 'enable_footer_white' ); $enable_footer_parallax = isset($meta_data['enable_parallax_footer_page']) ? $meta_data['enable_parallax_footer_page'] : cs_get_option( 'enable_parallax_footer' ); $copyright_align = isset($meta_data['whizz_copyright_align']) ? $meta_data['whizz_copyright_align'] : cs_get_option( 'whizz_copyright_align' ); $change_footer = cs_get_option( 'whizz_copyright_align' ); if(empty($copyright_align)){ $copyright_align = 'center'; } if(isset($meta_data_portfolio['enable_footer_copy_page'])){ $enable_footer_copy = $meta_data_portfolio['enable_footer_copy_page']; }elseif(isset($meta_data_events['enable_footer_copy_page'])){ $enable_footer_copy = $meta_data_events['enable_footer_copy_page']; } if(isset($meta_data_portfolio['enable_footer_widgets_page'])){ $enable_footer_widgets = $meta_data_portfolio['enable_footer_widgets_page']; }elseif(isset($meta_data_events['enable_footer_widgets_page'])){ $enable_footer_widgets = $meta_data_events['enable_footer_widgets_page']; } if(!$enable_footer_copy && !$enable_footer_widgets){ $class_footer .= ' no-footer'; } if($enable_footer_white){ $class_footer .= ' white-footer'; } $enable_footer_parallax = apply_filters( 'whizz_blog_footer_style', $enable_footer_parallax ); if($enable_footer_parallax){ $class_footer .= ' footer-parallax'; } if(is_404() && cs_get_option('change_footer') == true){ $enable_footer_copy = cs_get_option('enable_footer_copy_404'); $enable_footer_widgets = cs_get_option('enable_footer_widgets_404'); } ?> </div> <footer id="footer" class="<?php echo esc_attr( $class_footer ); ?>"> <div class="container no-padd"> <?php if(!function_exists( 'cs_framework_init' ) || (!empty($enable_footer_widgets) && $enable_footer_widgets == true)){ ?> <div class="widg clearfix"> <?php if ( is_active_sidebar( 'footer_sidebar' ) ) { dynamic_sidebar( 'footer_sidebar' ); } ?> </div> <?php } ?> </div> <div class="container-fluid"> <?php if(!empty($enable_footer_copy) && $enable_footer_copy == true){ ?> <div class="copyright text-<?php echo esc_attr($copyright_align); ?>"> <?php $footer_text = cs_get_option( 'footer_text' ) ? cs_get_option( 'footer_text' ) : ' '; echo wp_kses_post( $footer_text ); ?> </div> <?php } if ( ! function_exists( 'cs_framework_init' ) ) { ?> <div class="copyright text-center"> <?php $footer_text = esc_html__( ' ©', 'whizz' ) . date( 'Y' ); echo wp_kses_post( $footer_text . bloginfo( 'name' )); ?> </div> <?php } ?> </div> </footer> <?php $classCopy = cs_get_option('enable_copyright') && !cs_get_option('text_copyright') ? '' : 'copy'; if ( cs_get_option('enable_copyright') ): ?> <div class="whizz_copyright_overlay <?php echo esc_attr($classCopy); ?>"> <div class="whizz_copyright_overlay.active"> <?php if( cs_get_option('text_copyright') ) : ?> <div class="whizz_copyright_overlay_text"> <?php echo wp_kses_post(cs_get_option('text_copyright')); ?> </div> <?php endif; ?> </div> </div> <?php endif; ?> <div class="fullview"> <div class="fullview__close"></div> </div> <?php if(cs_get_option('page_scroll_top') == true){ ?> <div class="scroll-top-button"> <a href="#" id="back-to-top">↑</a> </div> <?php } ?> <?php wp_footer(); ?> </body> </html>