• Resolved Ricsca2

    (@ricsca2)


    Can you plug in the automatic insertion of posts instead of having to enter the code in the php file of the theme?

    Thank you

Viewing 1 replies (of 1 total)
  • Plugin Author Lester Chan

    (@gamerz)

    That is the recommended way if I do the auto way, then I will get users how do I move the ratings here and there. So to solve the problem, I let user choose where they want to insert it.

    If you want to do the auto way, you can put this in functions.php of your theme

    <?php
    add_filter( 'the_content', 'the_conent_ratings' );
    function the_conent_ratings( $content ) {
        return $content . the_ratings( 'div', 0, false );
    }
    ?>
    
    • This reply was modified 8 years, 12 months ago by Lester Chan.
Viewing 1 replies (of 1 total)

The topic ‘Auto Insert’ is closed to new replies.