Guest User

Untitled

a guest
Jun 22nd, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. function electro_copyright_bar_v2() {
  2.  
  3. $website_title_with_url = sprintf( '<a href="%s">%s</a>', esc_url( home_url( '/' ) ), get_bloginfo( 'name' ) );
  4. $footer_copyright_text = apply_filters( 'electro_footer_copyright_text', sprintf( __( '&copy; %s - All Rights Reserved', 'electro' ), $website_title_with_url ) );
  5. $credit_card_icons = apply_filters( 'electro_footer_credit_card_icons', '' );
  6.  
  7. if ( apply_filters( 'electro_enable_footer_credit_block', true ) ) : ?>
  8.  
  9. <div class="copyright-bar">
  10. <div class="container">
  11. <div class="copyright"><?php echo wp_kses_post( $footer_copyright_text ); ?></div>
  12. <div class="payment"><?php echo wp_kses_post( $credit_card_icons ); ?></div>
  13. <?php echo do_shortcode( '[content_block slug=footer]' ); ?>
  14. </div>
  15. </div><?php
  16.  
  17. endif;
  18. }
Add Comment
Please, Sign In to add comment