Viewing 1 replies (of 1 total)
  • Plugin Author Parsa

    (@parselearn)

    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

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: WP-Parsi Lovely Bots] Finding 'the_content' Function’ is closed to new replies.