diff --git a/vendor/open-function-computers-llc/rad-theme-engine/src/Site.php b/vendor/open-function-computers-llc/rad-theme-engine/src/Site.php index 54ab675..0648162 100644 --- a/vendor/open-function-computers-llc/rad-theme-engine/src/Site.php +++ b/vendor/open-function-computers-llc/rad-theme-engine/src/Site.php @@ -1312,7 +1312,31 @@ class Site if (file_exists(get_template_directory() . "/assets/favicon.ico")) { add_action('wp_head', function () { - echo ""; + echo "".PHP_EOL; + }); + } + + if (file_exists(get_template_directory() . "/assets/favicon-16x16.png")) { + add_action('wp_head', function () { + echo "".PHP_EOL; + }); + } + + if (file_exists(get_template_directory() . "/assets/favicon-32x32.png")) { + add_action('wp_head', function () { + echo "".PHP_EOL; + }); + } + + if (file_exists(get_template_directory() . "/assets/apple-touch-icon.png")) { + add_action('wp_head', function () { + echo "".PHP_EOL; + }); + } + + if (file_exists(get_template_directory() . "/assets/site.webmanifest")) { + add_action('wp_head', function () { + echo "".PHP_EOL; }); } }