add_action( 'woocommerce_single_product_summary', 'show_emi', 10 );
function show_emi() {
    global $product;
    $id = $product->get_id();
    $product = wc_get_product( $id );
    $a = $product->get_price();
    $b = 1.00;
    $c = 9.00;
    $d = $a / $b;
    $total = $d / $c;
    $rounded = round($total, 2); // Değeri 2 basamaklı noktadan sonra yuvarla
    echo "<p><strong>Özel Taksit Seçenekleri:</strong> ", $rounded, " TL'den başlayan fiyat seçenekleri ile</p>";
}