fc2 ワードプレス移行

/wp-content/plugins/movabletype-importer/movabletype-importer.php

if( !empty($line) )
$line .= “\n”;
↓ 空改行を反映してくれるようになる。
//if( !empty($line) )
$line .= “\n”;

$post->post_excerpt .= $line;
↓ コメントアウトしないと、一覧表示時、本文の先頭100文字くらいが表示されなくなる。
↓ (抜粋に空文字が入ってしまう)
//$post->post_excerpt .= $line;

WORDPRESS ホーム全文表示

wp-content/themes/tortuga/template-parts/content.php

<?php tortuga_post_image_archives(); ?> 削除
<?php tortuga_post_image_single(); ?> 追加

<?php the_excerpt(); ?> 削除
<?php the_content(); ?> 追加
<?php tortuga_entry_tags(); ?> 追加

■スマホでは全文表示したくない場合

<?php if ( wp_is_mobile() ) : ?>
<?php tortuga_post_image_archives(); ?>
<?php else: ?>
<?php tortuga_post_image_single(); ?>
<?php endif; ?>

<?php if ( wp_is_mobile() ) : ?>
<?php the_excerpt(); ?>
<?php else: ?>
<?php the_content(); ?>
<?php tortuga_entry_tags(); ?>
<?php endif; ?>