i heve the following loop:
$argsvs = array(
'post_type' => 'imovel-para-venda',
'meta_key' => 'wpcf-imovel-preco',
'posts_per_page' => 0,
'oderby' => 'meta_value',
'order' => 'DESC'
);
$loop = new WP_Query( $argsvs ); while ( $loop->have_posts() ) : $loop->the_post(); ..... well, the thing is that it isnt working! The meta_key 'wpfc-imovel-preco' is a custom field creating using the plugin Types. It is filled with numbers and text sometimes. Well, the code above simply doesnt sort anything :( Any ideas?