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.
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.
return ‘http://placehold.it/120×90';
}
add_filter( ‘wpuf_no_image', ‘wpufe_dashboard_default_image' );
[/php]