Site icon Hip-Hop Website Design and Development

Find out how to say if meta_value is larger than 0 in an array?

Proper now I’ve this:

$args  = array(
    'meta_key' => 'userfunds',
    'meta_value' => '0',    
);

Principally this may present customers who’ve precisely ‘0’ as meta_value.

How do I say that meta_value needs to be larger than ‘0’?

I’ve tried:

    'meta_value' > '0',  

However utilizing the above, it reveals all customers, no matter their worth.

So I suppose utilizing > within the array is an invalid line and never what I would like.

I do know I am in all probability lacking one thing very small in my code?

ought to I take advantage of examine?

Any assist could be appreciated.