Advertisement
Guest User

dsadad

a guest
Mar 23rd, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.77 KB | None | 0 0
  1.  
  2. <?php   function nt_honshi_footer() {
  3.  
  4.         $nt_yellow_blog_footer_address  =   ( ot_get_option('nt_yellow_blog_footer_address') );
  5.         $nt_yellow_blog_footer_mail         =   ( ot_get_option('nt_yellow_blog_footer_mail') );
  6.  
  7.         if ( ot_get_option( 'nt_yellow_blog_footer_display' ) != 'off' ) :
  8. ?>
  9.  
  10.         <section id="footer_top_area">
  11.        
  12.                     <div class="clearfix wrapper footer_top">
  13.                         <div class="clearfix footer_top_container">
  14.                             <div class="clearfix single_footer_top floatleft">
  15.                                 <h2>İletişim</h2>
  16.                                 <p><?php $nt_yellow_blog_footer_adress  =   ( ot_get_option('nt_yellow_blog_footer_adress') ); ?><br> <br>
  17.                                     Suite 721 New York NY 10016 <br><br>
  18.                                     + 1235 2355 98 <br><br>
  19.                                     <a href="">
  20.                                     <?php $nt_yellow_blog_footer_mail  =    ( ot_get_option('nt_yellow_blog_footer_mail') ); ?>
  21.                                        
  22.                                     </a> <br><br>
  23.                                     </p>
  24.                             </div>
  25.                             <div class="clearfix single_footer_top floatleft">
  26.                                 <h2 style="float: left;">Son Yazı</h2>
  27.                                 <p></p>
  28.                                 <p style="clear:both;"><a style="text-decoration: underline;" href="<?php the_permalink(); ?>"><?php the_title(); ?></a><?php the_excerpt(); ?></p>
  29.                             </div>
  30.                             <div class="clearfix single_footer_top floatleft">
  31.                                
  32.                                 <h2>Son Yazı Başlıkları</h2>
  33.                                 <ul>
  34.                                 <?php query_posts('showpost = 3'); ?>
  35.                                 <?php while(have_posts()): the_post() ?>
  36.                                     <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
  37.                                 <?php endwhile; ?>
  38.                                    
  39.                                 </ul>
  40.  
  41.                             </div>
  42.                         </div>
  43.                     </div>
  44.  
  45.  
  46.         </section>
  47.        
  48.         <section id="footer_bottom_area">
  49.             <div class="clearfix wrapper footer_bottom">
  50.                 <div class="clearfix copyright floatleft">
  51.                     <p> Copyright &copy; All rights reserved by <a href=""><span>info@yoursite.com</span></a></p>
  52.                 </div>
  53.                 <div class="clearfix social floatright">
  54.                     <ul>
  55.                         <li><a class="tooltip" title="Facebook" href=""><i class="fa fa-facebook-square"></i></a></li>
  56.                         <li><a class="tooltip" title="Twitter" href=""><i class="fa fa-twitter-square"></i></a></li>
  57.                         <li><a class="tooltip" title="Google+" href=""><i class="fa fa-google-plus-square"></i></a></li>
  58.                         <li><a class="tooltip" title="LinkedIn" href=""><i class="fa fa-linkedin-square"></i></a></li>
  59.                         <li><a class="tooltip" title="tumblr" href=""><i class="fa fa-tumblr-square"></i></a></li>
  60.                         <li><a class="tooltip" title="Pinterest" href=""><i class="fa fa-pinterest-square"></i></a></li>
  61.                         <li><a class="tooltip" title="RSS Feed" href=""><i class="fa fa-rss-square"></i></a></li>
  62.                         <li><a class="tooltip" title="Sitemap" href=""><i class="fa fa-sitemap"></i> </a></li>
  63.                     </ul>
  64.                 </div>
  65.             </div>
  66.         </section>
  67.  
  68.     <?php endif;
  69.  
  70.     wp_footer(); ?>
  71. <body>
  72. <html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement