okuden-labo
4/8/2015 - 9:04 AM

wordpress 固定ページの親ページに子ページ一覧を表示

wordpress 固定ページの親ページに子ページ一覧を表示

<?php
    $child_posts = query_posts( 'numberposts=-1&order=ASC&orderby=post_title&post_type=page&post_parent=' . $post->ID );
    if ( $child_posts ) {
        foreach ( $child_posts as $child ) {
            $c_title = apply_filters( 'the_title', $child->post_title );
            $c_permalink = apply_filters( 'the_permalink', get_permalink( $child->ID ) );
            $c_image_id = get_post_thumbnail_id($child->ID);
            $c_image_url = wp_get_attachment_image_src($c_image_id, '', true);
?>
    <div class="child-pages">
        <a href="<?php echo $c_permalink; ?>">
            <img src="<?php echo $c_image_url[0]; ?>" />
            <p><?php echo $c_title; ?></p>
        </a>
    </div><!-- .child-pages -->
<?php
        }
    }
?>