Bu kodu functions.php ye ekleyip deneyin. Resim adresini kendinize göre değiştirin.

function paylasim_resmi_duzenleme() {
    if ( ! is_home() ) {
        return;
    }

    $resim_url = 'https://site.com/resim.jpg'; // Tırnak içerisine resim adresini girin.

    echo '<meta property="og:image" content="' . esc_url( $resim_url ) . '" />';
}

add_action( 'wp_head', 'paylasim_resmi_duzenleme' );