How to Hide Promoted and Featured List...
This code snippet allows you to easily hide or remove the “Promoted” and ...

WPCodeBox
446
This WordPress snippet efficiently deletes orphaned post meta data, ensuring your database remains clean and optimized by removing all metadata not associated with existing posts.
<?php
// Warning! Please create a backup of your database before running this snippet
// This snippet should only be ran in "Manual" mode.
global $wpdb;
$affected_rows = $wpdb->query("DELETE postmeta FROM {$wpdb->postmeta} postmeta LEFT JOIN {$wpdb->posts} posts ON posts.ID = postmeta.post_id WHERE posts.ID IS NULL");
echo "Deleted $affected_rows orphaned meta entries.";





