18 |
` exists in content, default
25 | // to that. If an option is set specifically to display excerpts, default to that. Otherwise show
26 | // full content.
27 | if ( $post->post_excerpt ) {
28 | echo get_the_excerpt() . '
» More ...';
29 | } elseif ( strstr( $post->post_content, '' ) ) {
30 | the_content( '
» More ...' );
31 | } elseif ( 'excerpt' === spine_get_option( 'archive_content_display' ) ) {
32 | the_excerpt();
33 | } else {
34 | the_content();
35 | }
36 |
37 | ?>
38 |
39 |
40 |
41 |
42 | '
' . __( 'Pages:', 'spine' ), 'after' => '
' ) ); ?>
43 |
44 |
45 |
46 |