Do you write blog posts? Do you use affiliate links? If yes, you need to add affiliate disclosures. This is important. It keeps you honest. And it follows FTC rules. But adding a disclosure to every post can be hard. So, how can you do it easily? This guide will help you. You will learn how to add affiliate disclosure automatically. Let’s start.
Why Do You Need an Affiliate Disclosure?
Affiliate links help you earn money. But readers need to know. They need to know you earn money if they buy. This is called transparency. The FTC says you must tell readers. It is the law. If you don’t, you can get in trouble. So, always add an affiliate disclosure.

Credit: www.wpbeginner.com
What Should the Disclosure Say?
The disclosure should be clear. It should be easy to understand. Here is a simple example:
“This post contains affiliate links. If you buy through these links, I may earn a small commission at no extra cost to you.”
This is clear. Readers understand. They know you earn money from links.
How to Add Affiliate Disclosure Automatically
Adding a disclosure to each post manually takes time. But, you can automate it. This saves time. It also ensures you never forget. Here’s how you can do it.
Using WordPress Plugin
If you use WordPress, you are in luck. There are plugins to help. Here is how you can use one:
- Go to your WordPress dashboard.
- Click on “Plugins” in the sidebar.
- Click on “Add New”.
- Search for “Affiliate Disclosure”.
- Find a plugin with good ratings. Install it.
- Activate the plugin.
- Go to the plugin settings.
- Set up your disclosure text.
- Choose where you want the disclosure to appear.
Now, every post will have a disclosure. Simple and easy!
Using Theme Functions
Do you like coding? You can add a disclosure with code. Here is how:
- Go to your WordPress dashboard.
- Click on “Appearance”.
- Click on “Theme Editor”.
- Find the “functions.php” file.
- Add this code at the end:
function add_affiliate_disclosure($content) {
if (is_single()) {
$disclosure = 'Affiliate Disclosure: This post contains affiliate links. If you buy through these links, I may earn a small commission at no extra cost to you.
';
return $disclosure . $content;
}
return $content;
}
add_filter('the_content', 'add_affiliate_disclosure');
Save the file. Now, every post will have a disclosure. You did it!
Using Page Builders
Do you use a page builder like Elementor? You can add a disclosure there too. Follow these steps:
- Open your post in Elementor.
- Add a new section at the top or bottom.
- Drag and drop a text widget.
- Type your disclosure.
- Save and update the post.
Do this for each post. It takes time but works well.

Credit: nerdynav.com
Tips for Effective Disclosures
Here are some tips for better disclosures:
- Be Clear: Use simple words. Make sure readers understand.
- Be Honest: Always tell the truth. Never hide the fact you earn money.
- Be Consistent: Use the same disclosure every time. This builds trust.
- Be Visible: Place the disclosure where readers can see it. The top of the post is best.
Frequently Asked Questions
What Is An Affiliate Disclosure?
An affiliate disclosure informs readers about your affiliate links. It’s a legal requirement.
Why Do I Need An Affiliate Disclosure?
It builds trust with readers. It also complies with legal guidelines.
How Can I Add Affiliate Disclosure Automatically?
Use plugins or custom code in your blog’s template.
Which Plugins Help With Affiliate Disclosures?
Plugins like Pretty Links or ThirstyAffiliates can help automate disclosures.
Conclusion
Adding an affiliate disclosure is important. It keeps you honest. It follows the law. You can add it manually. But, it is better to automate it. Use plugins, code, or page builders. This saves time and ensures you never forget. Follow the tips to make your disclosure clear and honest. Happy blogging!