Manage cookies that are used for advertising, such as ad personalization, remarketing, and ad effectiveness analysis.
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)