Anchor Link to another page in specific section ID
-
my goal is simple, I need to create an Anchor link form top-page menu going to another page and landing to its specific section ID. I have these codes from default WordPress function:
<a href="<?php echo home_url( '/#aboutus' ); ?>">About Us</a>
<a href="<?php echo esc_url( home_url( '/' ) ); ?>#aboutus">About Us</a>
<a href="<?php echo esc_url( home_url( '/' ) ) . "#aboutus"; ?>">About Us</a>
unfortunately all these codes are not working. are there any ways how to achieve my goal?
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Anchor Link to another page in specific section ID’ is closed to new replies.