add_action( 'wp_head', 'add_recaptcha_site_key' );

function add_recaptcha_site_key() {
    ?>
    <script src="https://www.google.com/recaptcha/api.js?render=YOUR_SITE_KEY_HERE"></script>
    <?php
}