When there is neither featured image nor image/video inside post content, Content Views Pro will display this default image:
To use your own image, please add this code to file functions.php in the theme’s folder (or install this plugin Code Snippets then add this code to the “Code” textarea):
// Content Views Pro - Custom default image add_filter( 'pt_cv_default_image', 'cvp_theme_default_image', 100, 1 ); function cvp_theme_default_image( $args ) { $args = 'YOUR_IMAGE_URL'; return $args; }
Please replace YOUR_IMAGE_URL with the full URL of your image.
Thank you,