Skip to content

Instantly share code, notes, and snippets.

@lynt-smitka
Created January 20, 2019 12:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lynt-smitka/5c92877437bbd4dc6833509e522f8583 to your computer and use it in GitHub Desktop.
Save lynt-smitka/5c92877437bbd4dc6833509e522f8583 to your computer and use it in GitHub Desktop.
function lynt_subpages() {
global $post;
$args = sprintf('echo=0&title_li=&child_of=%d', $post->ID);
return '<ul>'.wp_list_pages($args).'</ul>';
}
add_shortcode('list_subpages', 'lynt_subpages');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment