Reply To: how to add widget after posts?

Home Forums Support how to add widget after posts? Reply To: how to add widget after posts?

Home Forums Support how to add widget after posts? Reply To: how to add widget after posts?

#169370
Tom
Lead Developer
Lead Developer

GP Hooks is definitely the way to go.

To make sure it only shows up on single posts, wrap it in this conditional:

<?php if ( is_single() ) : ?>
    Your subscription form in here
<?php endif; ?>

Then make sure Execute PHP is checked.