https://tr.wordpress.org/plugins/def...eatured-image/ şöyle bir eklenti var. Kategori bazlı yapabilirmisin bilemedim (az biraz php biliyorsanız)
Tek dosyaymış, php bilginiz varsa ufak bir değişiklikle şu kategorilerde return html diyerek değişiklik yapabilirsin bu methodda
/**
* Set a default featured image if it is missing
*
* @param string $html The post thumbnail HTML.
* @param int $post_id The post ID.
* @param int $post_thumbnail_id The post thumbnail ID.
* @param string $size The post thumbnail size. Image size or array of width and height.
* @param array $attr values (in that order). Default 'post-thumbnail'.
*
* @return string
*/
public function show_dfi( $html, $post_id, $post_thumbnail_id, $size, $attr ) {
$default_thumbnail_id = get_option( 'dfi_image_id' ); // select the default thumb.
// if an image is set return that image.
if ( (int) $default_thumbnail_id !== (int) $post_thumbnail_id ) {
return $html;
}