Skip to content

Instantly share code, notes, and snippets.

@cezarsmpio
Created July 26, 2016 02:56
Show Gist options
  • Save cezarsmpio/23802ea25354a12abd24850512a05897 to your computer and use it in GitHub Desktop.
Save cezarsmpio/23802ea25354a12abd24850512a05897 to your computer and use it in GitHub Desktop.
Wordpress - Get page permalink by slug
<?php
/**
* The page permalink by slug
* @param string $slug The page slug
* @return string The permalink
*/
function page_permalink_by_slug($slug) {
return get_permalink( get_page_by_path( $slug ) );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment