How to Change Default Image in Dashboard

A- A+

If you've turned ON the image option in dashboard and you don't have any featured image, you get a default image in the dashboard.

Default Dashboard Featured Image

If you want to add your own custom image, there is a filter wpuf_no_image. You just need to return the image URL to change the image.

[php] function wpufe_dashboard_default_image() {
return ‘http://placehold.it/120×90';
}

add_filter( ‘wpuf_no_image', ‘wpufe_dashboard_default_image' );
[/php]

Changed dashboard featured image