Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function get_ID_by_slug($page_slug) {
- $page = get_page_by_path($page_slug);
- if ($page) {
- return $page->ID;
- } else {
- return null;
- }
- }
- wp_some_function(get_ID_by_slug('any-page'));
Advertisement
Add Comment
Please, Sign In to add comment