Created
February 23, 2016 18:34
-
-
Save alandbh/5c2039dd4684941f941b to your computer and use it in GitHub Desktop.
Pega a URL da página pelo nome
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ---------------- | |
Pega a URL da página pelo nome | |
Alan | |
----------------- */ | |
function page_url($title) { | |
echo get_permalink( get_page_by_title( $title ) ); | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment