Skip to content

Instantly share code, notes, and snippets.

@danielstrelec
Created April 21, 2017 07:10
Show Gist options
  • Select an option

  • Save danielstrelec/2926b9db94d17e6595dd8af67d3e8c32 to your computer and use it in GitHub Desktop.

Select an option

Save danielstrelec/2926b9db94d17e6595dd8af67d3e8c32 to your computer and use it in GitHub Desktop.
// vytažení nadstránek
function getSuppages() {
global $post;
$pid = wp_get_post_parent_id($post->ID);
$pages = get_pages(array("parent" => $pid, "sort_column" => "menu_order"));
return $pages;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment