How do I modify this page template to show subpage excerpts (not post excerpts)?
Slightly modify these lines $content = $page->post_content; if ( ! $content ) // Check for empty page continue; $content = apply_filters( ‘the_content’, $content ); to $content = $page->post_excerpt; if ( ! $content ) // Check for empty excerpt content & fallback to full content $content = $page->post_content; if ( ! $content ) // Check for … Read more