Insert content after each posts with filter hook - WordPress
If we want to add some content in single posts, Everyone like to edit single.php
file in our theme directory. In almost WordPress themes, this single.php
file is used to render single posts.
We just want to add our content after the the_content()
function.
Today we are going to use another method to achieve this same functionality. Just copy & paste below code in to our theme’s functions.php
file.
function insertFootNote($content) {
if(!is_feed() && !is_home()) {
$content.= "<div class='subscribe'>";
$content.= "<h4>Enjoyed this article?</h4>";
$content.= "<p>Subscribe to our <a href='http://feed.example.com'>RSS feed</a> and never miss updates!</p>";
$content.= "</div>";
}
return $content;
}
add_filter ('the_content', 'insertFootNote');
In this code snippet, we just make a new function named as insertFootNote()
with our additional content. Then use WordPress filter hook to add this additional content with content from Database.
I always suggest you to try hacks & code snippet as much as possible in different ways. It will improve our knowledge & help to master in our domain.
Looking for a skilled WordPress/WooCommerce developer? I'm currently available for freelance, contract, or full-time remote opportunities! Let's create something amazing together. Send me a quick message, and I'll respond within 24 hours!
Recent Posts
- REST API Methods Explained with Best Practices for Building Clean and Secure APIs
- My 28-Day Plan to Master Modern WordPress Development Using AI Tools
- Scaling WordPress - How Custom Database Tables Solve the Post Meta Bottleneck
- WordPress Transients Explained - A Developer's Guide to Site Performance
- Behind the Click - The Hidden Journey of Your Web Requests
Your Questions / Comments
If you found this article interesting, found errors, or just want to discuss about it, please get in touch.