Spit out list of distinct instances of custom field?
Here’s a dashboard widget you could manage them with: // add dashboard widget add_action(‘wp_dashboard_setup’, ‘wpse_dashboard_widget’); function wpse_dashboard_widget() { // only show widget to users who can publish pages if(current_user_can(‘publish_pages’)) { wp_add_dashboard_widget(‘deduped_dash_widget’, ‘Publications’, ‘wpse_create_deduped_dash_widget’); } } // widget contents function wpse_create_deduped_dash_widget() { // select publications without duplicates by using DISTINCT global $wpdb; $mentions = $wpdb->get_results(“SELECT DISTINCT … Read more