Hello
You know ‘the_content()’ function use for print post content.
This function exists in post loop.
in files: index, single, search, page, tag, archive, …
for example:
<?php
while (have_posts()) : the_post();
the_title();
echo "<br />";
the_content("more content ...");
endwhile;
?>
replace with this:
<?php
while (have_posts()) : the_post();
the_title();
echo "<br />";
the_content_bot_wpp("more content ...")
endwhile;
?>
“more content …” link, printed when default state
Best regards