Advertisement
MarketWP

Untitled

Oct 22nd, 2019
412
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.36 KB | None | 0 0
  1. <ul class="et-social-icons">
  2.  
  3. <?php if ( 'on' === et_get_option( 'divi_show_facebook_icon', 'on' ) ) : ?>
  4.     <li class="et-social-icon et-social-facebook">
  5.         <a href="<?php echo esc_url( et_get_option( 'divi_facebook_url', '#' ) ); ?>" class="icon">
  6.             <span><?php esc_html_e( 'Facebook', 'Divi' ); ?></span>
  7.         </a>
  8.     </li>
  9. <?php endif; ?>
  10. <?php if ( 'on' === et_get_option( 'divi_show_twitter_icon', 'on' ) ) : ?>
  11.     <li class="et-social-icon et-social-twitter">
  12.         <a href="<?php echo esc_url( et_get_option( 'divi_twitter_url', '#' ) ); ?>" class="icon">
  13.             <span><?php esc_html_e( 'Twitter', 'Divi' ); ?></span>
  14.         </a>
  15.     </li>
  16. <?php endif; ?>
  17. <?php if ( 'on' === et_get_option( 'divi_show_google_icon', 'on' ) ) : ?>
  18.     <li class="et-social-icon et-social-google-plus">
  19.         <a href="<?php echo esc_url( et_get_option( 'divi_google_url', '#' ) ); ?>" class="icon">
  20.             <span><?php esc_html_e( 'Google', 'Divi' ); ?></span>
  21.         </a>
  22.     </li>
  23. <?php endif; ?>
  24. <?php if ( 'on' === et_get_option( 'divi_show_rss_icon', 'on' ) ) : ?>
  25. <?php
  26.     $et_rss_url = '' !== et_get_option( 'divi_rss_url' )
  27.         ? et_get_option( 'divi_rss_url' )
  28.         : get_bloginfo( 'comments_rss2_url' );
  29. ?>
  30.     <li class="et-social-icon et-social-rss">
  31.         <a href="<?php echo esc_url( $et_rss_url ); ?>" class="icon">
  32.             <span><?php esc_html_e( 'RSS', 'Divi' ); ?></span>
  33.         </a>
  34.     </li>
  35. <?php endif; ?>
  36.  
  37. </ul>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement