- 28
- 07
- 2015
Tüm featured images kayıtlarını silmek
Kategorisi : Wordpressfunctions.php'ye bu kodları ekliyoruz.
add_action ('init', 'remove_featured_images' );
function remove_featured_images () {
global $wpdb;
// The following query will only unset the featured image, it will not delete it.
$wpdb->query( "
DELETE FROM $wpdb->postmeta
WHERE meta_key = '_thumbnail_id'
" );
}
Login gerekli Giriş .