while browsing Wordpress core I came across a file called noop.php
that hosts a bunch of empty functions.
/* Noop functions for load-scripts.php and load-styles.php */
/**
* @ignore
*/
function home_url() {}
/**
* @ignore
*/
function includes_url() {}
...
what's the logic behind these functions?
why does the admin section of Wordpress need them?.
thank you.