Quote:
Originally Posted by Lynne
edit to add: You can always do the reverse comparison and it should work:
HTML Code:
<if condition="$post[posts] <= 200">
I have less than 200 posts
<else />
I have more than 200 posts
</if>
|
Nope that would not work.
Consider a user with 1100 posts. This would be formatted as "1.100".
"1.100 <= 200" will be true!! ("1.100" will be casted to a numeric and will result in "1")
Only (good) solution is to create a plugin that store the postcount in a seperated variable before it is formatted.