wordpress - How do I append an anchor link to a home link in php/wp? -


i have code , want add #about end of link

<li><a href="<?php echo get_option('home'); ?>">about me</a></li> 

thanks!

just add #about this:

<li><a href="<?php echo get_option('home'); ?>#about">about me</a></li> 

Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -