没有你的代码,这有点困难,所以请容忍我。
您可以这样做:
$x=0;
$x=do_shortcode (\'[your_shortcode]\'); // say its 10
$valuetoadd = 20; //for example
$exams_count_sum= $x + $valuetoadd;
echo $exams_count_sum; //should equal 30
或者,如果您处于循环中,这可能是一个很好的起点:
$examtotal=0;
$examtotal_sum=0;
while ( $the_query->have_posts() ) : $the_query->the_post();
the_content();
$examtotal=do_shortcode (\'[your_shortcode]\');
$examtotal_sum = $examtotal_sum + $examtotal;
endwhile;
echo \'total is \'.$examtotal_sum; //this will be your total