以下を使用して、抜粋を表示するように呼び出しましたが、完全な投稿が表示されています:-
これは私の機能です:-
add_action( 'init', 'my_add_excerpts_to_pages' );
function my_add_excerpts_to_pages() {
add_post_type_support( 'page', 'excerpt' );
また、これは私のクエリです
<?php
// retrieve one post with an ID of 5
query_posts( 'p=1' );
// set $more to 0 in order to only get the first part of the post
global $more;
$more = 0;
// the Loop
while (have_posts()) : the_post();
the_content( 'Read the full post »' );
endwhile;
?>
教えてください。ありがとう