Skip to content

Instantly share code, notes, and snippets.

@claudiosanches
Created January 30, 2013 17:32
Show Gist options
  • Save claudiosanches/4674943 to your computer and use it in GitHub Desktop.
Save claudiosanches/4674943 to your computer and use it in GitHub Desktop.
WordPress Shortcode Skills
<?php
function cs_skills( $atts ) {
extract( shortcode_atts( array(
'name' => '',
'perc' => '',
), $atts ) );
// Arredonda o valor. de 66 vai para 70.
$perc = round( $perc, -1 );
$html = '<div class="skills">';
$html .= '<span class="name">' . $name . '</span>';
$html .= '<span class="perc">' . $perc . '%</span>';
$html .= '</div>';
return $html;
}
add_shortcode( 'skill', 'cs_skills' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment