Open ghost opened 8 years ago
I have an array, in a meta_query as below:
array( 'key' => 'agp_art_size_height', 'value' => $_GET['height'], 'type' => 'CHAR', 'compare' => 'LIKE', );
Problem is, I don't think that's comparing against my TF option with the ID agp_art_size_height. Please let me know how this is supposed to be done, since the native meta_query doesn't work?
agp_art_size_height
In case anyone is still wondering, you need to prefix the key with your Titan Framework namespace
'key' => 'namespace_agp_art_size_height'
I have an array, in a meta_query as below:
array( 'key' => 'agp_art_size_height', 'value' => $_GET['height'], 'type' => 'CHAR', 'compare' => 'LIKE', );
Problem is, I don't think that's comparing against my TF option with the ID
agp_art_size_height
. Please let me know how this is supposed to be done, since the native meta_query doesn't work?