In the Total theme i.e. for the portfolio or staff custom post types, the menu…
Simple Plus („+“) Shortcode
function plus_func($atts) {
extract( shortcode_atts( array(
'symbol' => '+++',
), $atts ) );
$return = '<span class="symbol">'.$symbol.'</span>';
return $return;
}
add_shortcode('plus','plus_func');
