Skip to content

Instantly share code, notes, and snippets.

@dancingsoda
Created December 6, 2016 08:09
Show Gist options
  • Save dancingsoda/111200d797acecf0cc91e4ccd77bdf9d to your computer and use it in GitHub Desktop.
Save dancingsoda/111200d797acecf0cc91e4ccd77bdf9d to your computer and use it in GitHub Desktop.
in folder dahz-framework-themes\views\dahz-framework-footer
<?php
extract( Dahz_Framework_Footer::$dv_footer_params );
$footer = Dahz_Framework_Footer::$dv_footer_params;
?>
<footer id="de-footer-wrapper" class="febe">
<?php
if( 'yes' == strtolower( $footer['dv_display_footer'] ) ){
if ( is_active_sidebar( 'de-footer-area-1' ) ) {
?>
<div class="de-to-footer">
<div class="de-footer__social-feed">
<?php dynamic_sidebar( 'de-footer-area-1' ); ?>
</div>
</div>
<?php
}
}
?>
<div class="de-footer-area">
<?php if( 'yes' == strtolower( $footer['dv_display_footer'] ) ){ ?>
<div class="de-footer__main-footer de-to-footer">
<div class="de-footer__main-footer--inner">
<div class="de-footer-inner--left">
<div class="de-footer-inner--left-logo">
<?php echo Dahz_Framework_Footer::dahz_framework_get_footer_logo(); ?>
</div>
<div class="de-footer-inner--left-misc">
<div class="de-footer-description">
<p>
<?php
if( !empty( $footer['dv_footer_text'] ) ){
printf( $footer['dv_footer_text'] );
}else{
?>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.
<?php
}
?>
</p>
</div>
<?php
if( 'yes' == strtolower( $footer['dv_footer_social_icon'] ) ){
dahz_framework_get_social_media_account('de-footer-social-logo de-inline-list');
}
?>
</div>
</div>
<div class="de-footer-inner--center">
<?php dynamic_sidebar( 'de-footer-area-2' ); ?>
</div>
<div class="de-footer-inner--right">
<?php dynamic_sidebar( 'de-footer-area-3' ); ?>
</div>
</div>
</div>
<?php
}
if( 'yes' == strtolower( $footer['dv_display_subfooter'] ) ){
?>
<div class="de-sub-footer de-to-sub-footer">
<div class="row">
<div class="de-sub-footer-inner--center">
<div class="de-copyright">
<p>
<?php
if( !empty( $footer['dv_subfooter_text'] ) ){
printf( $footer['dv_subfooter_text'] );
}else{
?>
&copy; 2005 - 2016 DAHZ THEME. ALL RIGHTS RESERVED
<?php
}
?>
</p>
</div>
</div>
</div>
</div>
<?php
}
?>
</div>
</footer>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment