Advertisement
SRD75

wtc-profilebase.php

Mar 29th, 2018
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.98 KB | None | 0 0
  1.         <script>
  2.             jQuery(document).on('ready', function() {
  3.                 jQuery('.arrow').on('click', function(){
  4.                     jQuery(this).closest('.profile-right').toggleClass('active');
  5.                 });
  6.             });
  7.         </script>
  8.         <section >
  9.             <div class="profile-wrapper">
  10.                 <div class="profile-left">
  11.                     <img src="<?php echo $image; ?>">
  12.                 </div>
  13.                 <div class="profile-right">
  14.                     <h2><?php echo $name; ?></h2>
  15.                     <h3><?php echo $title; ?></h3>
  16.                     <p><?php echo nl2br($textarea);?></p>
  17.  
  18.                     <div class="bottom-sec">
  19.                         <p><?php echo nl2br($textarea_bot);?></p>
  20.                     </div>
  21.  
  22.                     <img class="arrow" src="<?php echo get_stylesheet_directory_uri(); ?>/images/icons/down-arrow-circle-30.png"/>
  23.                 </div>
  24.             </div>
  25.         </section>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement