This seems like a very simple question but everything I try, gives me an error.
if ( $query_results->have_posts() ) :
$count_results = $query_resul
You're not using the ternary operator correctly. Try:
$count_results = ($query_results->have_posts())? $query_results->found_posts : "YOUR ELSE EXPRESSION" ;
That's not a ternary operator; it's an uncommon if block syntax. Try this:
if ( $query_results->have_posts() ) {
$count_results = $query_results->found_posts;
} else {
// whatever
}
Note: there will be an endif;
later in your code, which you also need to replace using the above syntax. There may also be elseif (...):
or else :
statements. While these are acceptable and work, they are generally considered more difficult to read, and you are better off using braces, as in my example above.
For what it's worth, the only project I have ever seen use the colon syntax (if (...):
) is Wordpress. I'm sure they had a reason for doing so, but it's definitely the less common syntax.