Tagged Questions
1
vote
1answer
82 views
Custom MySQL Query with logic
I have wp e-commerce plugin installed and custom building custom global search
My query looks like this
SELECT * FROM aka_v_posts
LEFT JOIN aka_v_postmeta
ON aka_v_posts.ID=aka_v_postmeta.post_id
...
0
votes
1answer
138 views
SQL query - get ids - Advanced Custom Fields / WPeC
I need to query the database on add_action( 'init', '...') to find post ids with the field 'product_discount_option' set to true.
I know at least one of my product posts have the field ...