Hello There,
Thanks for writing in!
Is the text consistent in all post? Meaning,this paragraph will display the same wordings in all posts? If that is the case, because what you are trying to accomplish requires a template customization, we would highly to suggest that you use a child theme. This allows you to make code changes that won’t be overwritten when an X update is released.
Tip: After your child theme is setup, please review how we recommend making template changes in Customization Best Practices.
Once the child theme is set up, please add the following code in your child theme’s functions.php file
// Place a custom text
// =============================================================================
function place_custom_text() { ?>
<div class="custom text">
<p style="font-size: 12px; line-height: 15px; color: #989898;"><i> I may receive a commission if you purchase through links in this post. I am not a doctor; please consult your practitioner before changing your supplement or healthcare regimen. </i></p>
</div>
<?php }
add_action('x_after_the_content_begin', 'place_custom_text');
// =============================================================================
We would loved to know if this has work for you. Thank you.