2020-03-13, 01:31:17
Maybe a silly question, but I have looked through the forum and wiki, and cant seem to find it.
I would like to add a link in the footer template to a page that is not listed in a menu.
Is there a tag similar to <?php get_page_slug(); ?> where you include the slug of the page rather than adding the full url to a link.
Sorry if I am phrasing this all wrong.
What I would like to do is:
<a href="<?php get_page_url('My_Slug'); ?>" title="<?php get_page_title('My_Slug'); ?>"> </a>
Which would output something like:
<a href="https://mysite/My_Cool_Page" title="My Cool Page Title"> </a>
I would like to add a link in the footer template to a page that is not listed in a menu.
Is there a tag similar to <?php get_page_slug(); ?> where you include the slug of the page rather than adding the full url to a link.
Sorry if I am phrasing this all wrong.
What I would like to do is:
<a href="<?php get_page_url('My_Slug'); ?>" title="<?php get_page_title('My_Slug'); ?>"> </a>
Which would output something like:
<a href="https://mysite/My_Cool_Page" title="My Cool Page Title"> </a>