Вы можете использовать «вставить еще тег» в WordPress WYSIWYG.
В противном случае вы можете использовать что-то вроде этого, чтобы ограничить количество слов:
//define the number of words
$length = 1500;
$text = "Lorem Ipsum dolar sit amet etc etc"; //this would contain the article you are pulling from the database and syntax will depend largely on your theme.
$shortened = implode(' ',array_slice(str_word_count($text,1),0,$length));
echo $shortened . ' ...';
(пока это псевдокод, поскольку у меня нет времени на его тестирование.)
Тогда ссылка на статью:
<a href="<?php the_permalink(); ?>">read more</a>