Search code examples
wordpresshref

WordPress : a page link in <a> Not working


I'm trying to make a page link like below but it's not working. (I'm new developer in WP).

<a href="<?= home_url() ?>/about-us">about us</a>

Solution

  • Replace your code with this

    <a href="<?php echo home_url(); ?>/about-us">about us</a>