{"id":8762,"date":"2022-08-10T16:02:39","date_gmt":"2022-08-10T23:02:39","guid":{"rendered":"https:\/\/codedcommerce.com\/?post_type=product&#038;p=8762"},"modified":"2023-10-08T20:01:59","modified_gmt":"2023-10-09T03:01:59","slug":"report-products-missing-meta-data","status":"publish","type":"woo-code","link":"https:\/\/codedcommerce.com\/woo\/report-products-missing-meta-data\/","title":{"rendered":"Report products missing meta data"},"content":{"rendered":"\n<pre class=\"wp-block-code language-php\"><code>add_action( 'admin_notices', function() {\n\n\t\/\/ Get Batch Of Published Products\n\t$args = &#91; 'limit' => -1 ];\n    $products = wc_get_products( $args );\n\n\t\/\/ Output Count\n\tprintf( '&lt;p>%d total products&lt;\/p>', sizeof( $products ) );\n\n\t\/\/ Loop Products\n\t$counter = 0;\n\tforeach( $products as $product ) {\n\n\t\t\/\/ Conditions Go Here\n\t\tif( ! $product->is_type( 'variable' ) ) {\n\t\t\tcontinue;\n\t\t}\n\n\t\t\/\/ Counter\n\t\t$counter ++;\n\n\t\t\/\/ Get Retail Price\n\t\t$custom_field = $product->get_meta( 'custom_field' );\n\n\t\t\/\/ Report Missing\n\t\tif( ! $custom_field ) {\n\t\t\tprintf(\n\t\t\t\t'&lt;a href=\"\/wp-admin\/post.php?post=%d&amp;action=edit\">&lt;\/a> ',\n\t\t\t\t$product->get_id(),\n\t\t\t\t$product->get_id()\n\t\t\t);\n\t\t}\n\n\t} \/\/ End Published Products Loop\n\n\t\/\/ Output Count\n\tprintf( '&lt;p>%d products checked&lt;\/p>', $counter );\n\n} );<\/code><\/pre>\n","protected":false},"template":"","class_list":["post-8762","woo-code","type-woo-code","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/codedcommerce.com\/wp-json\/wp\/v2\/woo-code\/8762","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/codedcommerce.com\/wp-json\/wp\/v2\/woo-code"}],"about":[{"href":"https:\/\/codedcommerce.com\/wp-json\/wp\/v2\/types\/woo-code"}],"wp:attachment":[{"href":"https:\/\/codedcommerce.com\/wp-json\/wp\/v2\/media?parent=8762"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}