Gérer les cookies utilisés pour la publicité, tels que la personnalisation des annonces, le remarketing et l’analyse des performances des annonces.
2.14.1.11. Configure WordPress to work at service address (without domain)
To check the siteoperation without a domain (or its pointing), you can use a free service address:
- Enable service address in site settings.
- At the beginning of the WordPress configuration file (right after
<?php), add the following lines:define('WP_SITEURL', 'http://' . $_SERVER['HTTP_HOST']); define('WP_HOME', 'http://' . $_SERVER['HTTP_HOST']);
(10)