jquery - Add a link to a specific page in WordPress -


i have wordpress site has footer custom links. (child theme development)

i not want put them menu element, want link specific page, i'm not sure how can link specific page if don't know title

can hook tag or other feature can attach page , link that?

i think you're looking get_permalink() function.

example:

<a href="<?php echo get_permalink( 268 ); ?>">my link post or page</a> 

Comments