Last active
October 31, 2019 04:54
-
-
Save eliasgomezsainz/5b8b23d99bfd5fbfb36654a3c428fe2c to your computer and use it in GitHub Desktop.
Primera capa RGPD en formulario de registro de WordPress
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_action( 'register_form', 'eg_primera_capa_RGPD_registro' ); | |
function eg_primera_capa_RGPD_registro() { ?> | |
<p> | |
<strong>Responsable</strong>: Elías Gómez | <strong>Finalidad</strong>: Crear tu cuenta y permitir el acceso | <strong>Legitimación</strong>: Tu consentimiento | <strong>Destinatario</strong>: Servidores de SiteGround España | <strong>Derechos</strong>: Acceso, supresión, rectificación, oposición, portabilidad, limitación. | |
</p> | |
</br> | |
<?php | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment