Documentation Guides How to Change the Metric Displayed in the Posts Lists

How to Change the Metric Displayed in the Posts Lists

WP Statistics displays the number of views for each post in the WordPress admin posts list. If you prefer to show the number of unique visitors instead, you can use the following hook.

Please add this code to the functions.php file of your active theme:

add_filter('wp_statistics_mini_chart_metric', 'custom_chart_metric');

function custom_chart_metric($metric) {
    // You can use 'visitors' or 'views' as the metric
    return 'visitors';
}
The metric column