I downloaded the PODS 2 plugin (amazing!) – added a field to existing content type and now I would like to print it using php inside a widget. However...
I’ve currently got a Custom Post Type with 2 part titles; I’ve got everything working perfectly on the front end. But when it comes to searching for a post,...
Setup: WordPress Add/Edit Post/Page A plugin that have its own postbox with several hidden fields. Issue: How these custom hidden fields can be saved along with the other post...
Is there a way to bulk edit the custom excerpt text without going to each post and open it? When we have 300 posts it can be a very...
I am working on a voting system in WordPress. I first made it with GET requests but someone told me you should not use GET for this, So I...
I am trying to debug ‘undefined index’ errors on the WP backend when debug is set to TRUE. The offending lines are: if ( !wp_verify_nonce( $_POST['pdwt_meta_noncename'], plugin_basename(__FILE__) )) {...
My Query is this: $products = new WP_Query( array( 'post_type' => 'ys_product', 'orderby' => array( 'date' ), 'order' => 'DESC', 'posts_per_page' => 8, 'meta_query' => array( 'relation' => 'AND',...
Since, WordPress don’t have taxonomy metadata support for saving taxonomy custom form fields, I am currently thinking of using options API. But the 1MB options size limit on WordPress.com...
I’m storing CPT products‘ post IDs into CPT companies‘ post meta (meta_key = prefix_products). As a company can have multiple products, so I’m storing them into a PHP serialized...
I have 2 custom post types “Shops” and “Restaurants”. Each of these have custom fields associcated with them. For example, One field in Shops is “Shop ID” and one...