Jump to content

Add to Formidable addition shortcode script to Multiply and Divide


ramsaym

Recommended Posts

I've got this code below that I'd like to add to in order to add multiplication and division to some short code. Here's the code:

 

add_shortcode('sum','my_entry_count');
function my_entry_count($atts){
    extract( shortcode_atts(array(
     'vals' => '0',
), $atts ) );
    $val_array = explode(',', $vals);
    $total = array_sum($val_array);
return $total;
}

 

I don't even know where to begin, as I'm a novice, but would assume somewhere around the array_sum I'd add a multiplication and division but don't know the code nor where to add it. Any help would be much appreciated! This is an add in script for Formidable Pro plugin for Wordpress if this helps at all. I'm trying to build in calculations into the shortcode, and apparently this is to add addition to 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.