Hi I have one global block that I would like to be added to all of my old post and upcoming posts. How do I achieve this? Do i have to go back and change all old post? Or is there a simpler way? Thanks you
Hi @Nashish,
Thanks for reaching out.
It depends on your preferred placement. If you just wish to add it at the very end of post content then you can simply use the_content filter. Example add this code to your child theme’s functions.php with your global block shortcode.
add_filter ('the_content', 'post_global_block', 999999999999999);
function post_global_block( $content ) {
return is_singular ('post') ? $content.do_shortcode('[your global block shortcode here]') : $content;
}
Hope this helps.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.