GetSimple Support Forum

Full Version: Tag to link to page X slug
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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>
PHP Code:
<?php $mySlug 'my-slug'?>
<a href="<?php echo find_url($mySlugreturnPageField($mySlug'parent')); ?>" title="<?php getPageField($mySlug'title'); ?>">...</a> 
(2020-03-13, 01:48:09)Carlos Wrote: [ -> ]
PHP Code:
<?php $mySlug 'my-slug'?>
<a href="<?php echo find_url($mySlugreturnPageField($mySlug'parent')); ?>" title="<?php getPageField($mySlug'title'); ?>">...</a> 

I think that will work for me. Thank you Carlos for such a prompt reply Smile