Advertisement
aa_frey

Untitled

Apr 13th, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. }
  2. add_shortcode('services','precious_services');
  3.  
  4. // add shortcode for skills
  5. function precious_skills($fly_skill_var){
  6. extract( shortcode_atts(array(
  7. 'title' => 'title',
  8. 'percent' => 'percent',
  9. 'bgcolor' => 'bgcolor',
  10. ), $fly_skill_var));
  11.  
  12. return '<div class="skillbar clearfix " data-percent="'.$percent.'%">
  13. <div class="skillbar-title"><span>'.$title.'</span></div>
  14. <div class="skill-bg"><div class="skillbar-bar" style="background:'.$bgcolor.'"></div></div>
  15. <div class="skill-bar-percent">'.$percent.'%</div>
  16. </div>';
  17.  
  18. }
  19.  
  20. add_shortcode('skill','precious_skills');
  21.  
  22. function precious_head_manage(){
  23. if( !is_home() && of_get_option('innerpageslider',true) == 'hide') { ?>
  24. <style>
  25. .header{ position:relative !important;}
  26. </style>
  27. <?php }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement