Created
August 29, 2016 07:57
-
-
Save hemusyl/9634c45cd9db1cddefc60d3c80922fca to your computer and use it in GitHub Desktop.
Skill Option Tree
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="col-lg-6 col-md-6 col-sm-6 wow zoomIn" data-wow-duration ="1s" data-wow-delay="0.5s"> | |
<?php // Loop for Social Links | |
if (function_exists('ot_get_option')) { | |
/* get the option array */ | |
$skill_items = ot_get_option('skill_items', array()); | |
if (!empty($skill_items)) { | |
foreach ( $skill_items as $skill) { | |
echo '<div class="skillbar" data-percent="'.$skill['skills_percent'].'%"> | |
<div class="skillbar-title"> | |
<h3 class="blue">' . $skill['skills_percent'] .'%</h3><span class="sm-txt">' . $skill['title'] .'</span> | |
</div> | |
<div class="skillbar-bar blue"></div> | |
</div>'; | |
} | |
} | |
} | |
?> | |
</div> | |
================================================ | |
<div class="skillbar" data-percent="92%"> | |
<div class="skillbar-title"> | |
<h3 class="blue">92%</h3><span class="sm-txt">Photoshop</span> | |
</div> | |
<div class="skillbar-bar blue"></div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment