in index.php
(entry file) I have a $context["home-page"] = home_url();
yet for some reason when I implement it as <a href="{{ home-page }}">hello.com</a>.
When rendering, I get a "0" value in href attribute: hello.com
when I dump that context value, I get this erroneous reply:
\wp-content\themes\hello\vendor\twig\twig\lib\Twig\Extension\Debug.php:50:int 0
Keep in mind that all the other contexts Work fine, such as:
$context["parent_link"] = get_template_directory_uri();
$context["is_single"] = is_single();
Is this somethin familiar to any of you?