// Add a filter on product for set product image add_action('restrict_manage_posts', 'filter_products_by_image_presence'); function filter_products_by_image_presence() { global $typenow; $selected = isset($_GET['product_image_presence']) ? $_GET['product_image_presence'] : ''; if ('product' === $typenow) { ?> add_filter('parse_query', 'filter_products_query_by_image_presence'); function filter_products_query_by_image_presence($query) { global $pagenow, $typenow; if ('edit.php' === $pagenow && 'product' === $typenow && isset($_GET['product_image_presence']) && $_GET['product_image_presence'] != '') { $presence = $_GET['product_image_presence']; $meta_query = array( 'relation' => 'OR', array( 'key' => '_thumbnail_id', 'compare' => 'NOT EXISTS' ), array( 'key' => '_thumbnail_id', 'value' => '0' ) ); if ('set' === $presence) { $meta_query = array( array( 'key' => '_thumbnail_id', 'compare' => 'EXISTS' ), array( 'key' => '_thumbnail_id', 'value' => array('', '0'), // Assuming '0' or '' could be placeholders for no image. 'compare' => 'NOT IN' ), ); } elseif ('notset' === $presence) { $meta_query = array( 'relation' => 'OR', array( 'key' => '_thumbnail_id', 'compare' => 'NOT EXISTS' ), array( 'key' => '_thumbnail_id', 'value' => '0' ) ); } $query->set('meta_query', $meta_query); } }
,

國際P-80

火嘴

電極

保護帽

 

返回頂端