How to calculate posts number?
I want to achieve something like this:
foreach ( $posts as $post ) {
if ( $a = $b ) ) {
// if true +1 to the result;
} else {
// if not true -2 to the result;
}
}
echo 'Your result is X';
How to replace X with the result of a calculation? How calculation code should look?