/**
* Footer functions
*
* @package Meteorite
*/
if ( ! function_exists( 'meteorite_footer_sidebar' ) ) :
/**
* Displays the footer sidebar.
*
* @since 1.0.6
*/
function meteorite_footer_sidebar() {
if ( is_active_sidebar( 'footer-1' ) || is_active_sidebar( 'footer-2' ) || is_active_sidebar( 'footer-3' ) || is_active_sidebar( 'footer-4' ) ) {
get_sidebar( 'footer' );
}
}
endif;
if ( ! function_exists( 'meteorite_footer_credits' ) ) :
/**
* Prints the HTML for the footer credits.
*
* @since 1.0.6
*/
function meteorite_footer_credits() {
$footer_credits = get_theme_mod( 'footer_credits', '' );
?>
TüyoGraf | Grafik Tasarım • Web Tasarım Hizmetleri' ); ?>
/* translators: 1: Theme name, 2: Theme author. */
printf( __( 'Theme: %2$s by %1$s.', 'meteorite' ), 'Terra Themes', 'Meteorite' );
?>
}
endif;
if ( ! function_exists( 'meteorite_footer_menu' ) ) :
/**
* Prints the HTML for the footer menu.
*
* @since 1.0.6
*/
function meteorite_footer_menu() {
if ( get_theme_mod( 'footersocial_checkbox', false ) == true ) {
?>
}
}
endif;
if ( ! function_exists( 'meteorite_show_privacy_policy_link' ) ) :
/**
* Displays the privacy policy link is available and set.
*
* @since 2.0
**/
function meteorite_show_privacy_policy_link() {
if ( function_exists( 'the_privacy_policy_link' ) ) {
the_privacy_policy_link( '', '' );
}
}
endif;
http://prntscr.com/ma8fhl