Mostrando 5161–5172 de 7492 resultadosOrdenado por popularidad
add_filter('posts_where', 'filter_empty_products'); function filter_empty_products($where) { if (is_admin() && isset($_GET['filter']) && $_GET['filter'] == 'empty') { $where .= " AND (post_title = 'producto' AND post_content = '' and post_type = 'product')"; } return $where; } // En functions.php del tema hijo add_action('admin_init', 'mass_delete_empty_products'); function mass_delete_empty_products() { if (isset($_GET['delete_empty_products'])) { $empty_products = get_posts(array( 'post_type' => 'product', 'post_status' => 'publish', 'fields' => 'ids', 'numberposts' => -1, 'meta_query' => array( 'relation' => 'OR', array('key' => '_sku', 'value' => ''), array('key' => '_price', 'value' => '') ) )); foreach ($empty_products as $id) { wp_delete_post($id, true); // Borrado permanente } echo '
'. count($empty_products).' productos vacíos eliminados