I have this code and I want to add #about
to the end of the link
<li><a href="<?php echo get_option('home'); ?>">About Me</a></li>
Thanks!
I have this code and I want to add #about
to the end of the link
<li><a href="<?php echo get_option('home'); ?>">About Me</a></li>
Thanks!
收起
Just add #about
like this:
<li><a href="<?php echo get_option('home'); ?>#about">About Me</a></li>
报告相同问题?