Skip to content

Instantly share code, notes, and snippets.

@miya0001
Created June 2, 2013 05:57
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 miya0001/5692772 to your computer and use it in GitHub Desktop.
Save miya0001/5692772 to your computer and use it in GitHub Desktop.
child pages shortcodeをカスタム投稿タイプにも対応させる
<?php
// 以下をテーマのfunctions.php等にコピペすればオッケー
add_filter('child-pages-shortcode-query', 'child_pages_shortcode_post_type_fix');
function child_pages_shortcode_post_type_fix($args) {
$args['post_type'] = 'any';
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment