Connect with us

AFFILIATE MARKETING

How to Add Affiliate Disclosure for Each Blog Post Automatically

Published

on

How to add affiliate disclosure for each blog post automatically

Do you want to add an affiliate disclosure for each blog post automatically?

Affiliate marketing is one of the easiest ways to make money online. However, if you don’t disclose your affiliate links then you could end up in legal trouble.

In this article, we will show you how you can add an affiliate disclosure to all your WordPress blog posts.

Why Add an Affiliate Disclosure to Each WordPress Blog Post?

With affiliate marketing, you earn a commission every time someone clicks a referral link and makes a purchase. It’s a great way to make money online blogging with WordPress.

However, you must make it clear that your links are paid advertisements by adding an affiliate disclaimer. That just means posting a short notice explaining what affiliate marketing is, and that you get money from talking about the product or service.

Many countries have laws about failing to disclose paid endorsements. For example in the United States, you might get a fine from the Federal Trade Commission. You may even end up banned from reputable networks such as Amazon affiliates.

Even if you don’t get into legal trouble, customers who click on undisclosed affiliate links may feel tricked and stop visiting your WordPress website.

How to Add an Affiliate Disclosure to Each WordPress Blog Post

One option is to publish the affiliate disclaimer on its own page, as we do on WPBeginner.

The WPBeginner affiliate disclaimer page

You can then add a link to every page that features an affiliate URL. This may be a good choice if you have a longer disclosure and don’t want to distract from the post’s content.

If yours is short, then you can often add the full text of the disclaimer to every post.

An example affiliate disclaimer on a blog

No matter which option you choose, you can save time and effort by adding the affiliate disclosure automatically. Simply use the quick links below to jump straight to the method you want to use.

Pretty Links is one of the best affiliate marketing plugins that can automate all your affiliate activities, including adding a disclosure.

Pretty Links comes with an advanced auto-linking feature that allows you to enter the keywords or phrases that you want to turn into affiliate URLs.

Every time you type this word or phrase, Pretty Links will turn it into an affiliate URL automatically. Even better, if you have created a disclosure notice page, Pretty Links can also add a link to it in the post.

For example, if you add “MacBook Pro” as a keyword and then use that phrase in a new post, then Pretty Links will automatically turn “MacBook Pro” into an affiliate URL and add a link to your disclosure notice page.

An affiliate disclaimer, created using Pretty Links

Note: Pretty Links won’t insert the disclosure link if you only add affiliate URLs manually. It only works when a post uses automatic keyword linking.

To get started, you’ll need to install and activate Pretty Links. If you need help, then please see our guide on how to install a WordPress plugin.

Upon activation, go to Pretty Links » Activate. You can then add your license key to the following field: ‘Enter Your Pretty Links Pro License Key.’

Activating the Pretty Links WordPress plugin

You can find this information under your account on the Pretty Links website. After typing in this information, click on the ‘Activate’ button.

With that done, you’ll need to go to Pretty Links » Add New and then add the first link you want to manage using the Pretty Links plugin.

For detailed step-by-step instructions, please see our guide on how to cloak affiliate links on your WordPress site.

How to cloak an affiliate link in WordPress with Pretty Links

After that, click on the ‘Pro’ tab. In the ‘Keywords’ field, type in each word or phrase where you want to automatically insert this affiliate URL.

Simply repeat this process for all your affiliate links.

Adding keywords to the Pretty Links affiliate linking plugin

Every time it adds this affiliate URL, Pretty Links will also add a link to your disclosure notice.

The next step is creating the disclosure notice page that Pretty Links will link to. Simply go to Pages » Add New. You can then type in your affiliate disclaimer and add any categories or tags that you want to use.

An example affiliate disclaimer

When you’re happy with your disclaimer, publish the page to make it live. It’s a good idea to make a note of the page’s URL, as you’ll need it in the next step.

Once you’ve done that, simply go to Pretty Links » Options. Then, click on the ‘Replacements’ tab.

Pretty Links' auto-linking and replacement settings

Here, check the ‘Enable Replacements’ box if it isn’t already selected.

After that, check the ‘Link to Disclosures’ box. In the ‘URL’ box, go ahead and enter your affiliate disclosure URL.

Pretty Links Disclosure Notice

By default, Pretty Links will use ‘Affiliate Link Disclosures’ as your link’s text. However, you can change this to anything you want by typing into the ‘Text’ field.

You can also change where Pretty Links adds the affiliate disclaimer link. By default, it shows the URL at the bottom of the post, so it doesn’t distract visitors from the post’s content.

Another option is to add the disclaimer to the top of the post. This is where we include it on WPBeginner.

WPBeginner Disclosure Notice

This lets visitors know the post contains an affiliate link before they start reading, which is a good way to build trust with your audience. However, some people may see the disclaimer and decide not to stay on the page, which can increase your bounce rate.

You can also add the disclaimer to both the top and bottom of each post. This may be a good idea if you write very long posts, but most sites don’t need multiple disclosures per page.

To place the affiliate URL, simply open the ‘Position’ dropdown and choose Bottom, Top, or Top and Bottom.

Changing where an affiliate disclaimer appears on your WordPress website

Once you’ve done that, just scroll to the bottom of the page.

Then, click on the ‘Update’ button.

Saving your Pretty Links settings

Now, Pretty Links will add an affiliate disclosure link every time it auto-inserts an affiliate URL to your posts, pages, or custom post types.

Method 2. Add Affiliate Disclosure Using WPCode (More Customizable)

Sometimes you may want to add the affiliate disclosure to different areas of every blog post. For example, you might show the disclosure after you mention each affiliate product for the first time.

In this case, you can create a shortcode that adds your affiliate disclaimer. This gives you complete control over where the disclosure appears, without you having to type the entire text every single time.

A custom shortcode created with WPCode

The easiest way to create a custom shortcode is using WPCode. This plugin lets you add code snippets to WordPress without editing your theme’s functions.php file.

WPCode also helps you avoid common errors by performing smart code snippet validation.

There are lots of ways to add an affiliate disclosure using WPCode. Besides the shortcode method, we’ll also share an easy way to automatically add the disclaimer to every post, page, or custom post type.

The first thing you need to do is install and activate the free WPCode plugin on your website. For more details, see our step-by-step guide on how to install a WordPress plugin.

Upon activation, go to Code Snippets » Add Snippet.

Adding a custom code snippet to WordPress

This will bring you to the ‘Add Snippet’ page where you can see all the ready-made snippets that you can use on your site.

Since we want to add custom code in WordPress, hover your mouse over ‘Add Your Custom Code (New Snippet).’ Then, click on ‘Use snippet’ when it appears.

Adding custom snippets to WordPress

To start, enter a title for the custom code snippet.

This could be anything that helps you identify the snippet in the WordPress admin area.

Adding a title to a WPCode custom code snippet

We’re going to add a PHP snippet, so open the ‘Code Type’ dropdown and choose the ‘PHP Snippet’ option.

You can then go ahead and paste the following code into the code box:

function disclosure() {
    return "<p class="disclosure">This site may contain links to affiliate websites, and we receive an affiliate commission for any purchases made by you on the affiliate website using such links.</p>";
}

add_shortcode( 'disclosure', 'disclosure' );

You can use any text as your affiliate disclaimer, simply by editing the code above. For example, you might want to add a link in HTML to your affiliate disclosure page.

Once you’ve done that, scroll to the ‘Insertion’ section and make sure ‘Auto Insert’ is selected.

Auto-inserting custom code snippets in WordPress

Then, open the ‘Location’ dropdown and choose ‘Frontend Only’ since we only want to use this code on our site’s frontend, which is what visitors see when they visit your site.

You can also organize your snippets by adding tags.

When you’re happy with how the snippet is set up, scroll to the top of the screen and click on ‘Save Snippet.’

Saving your WPCode snippet

After that, you can make the code snippet live by clicking the ‘Active’ toggle.

Finally, don’t forget to save the change by clicking on ‘Update.’

Updating a custom code snippet in WordPress

Now you can add the affiliate disclosure to any page, post, or custom post type using the [disclosure] shortcode. For more details on how to place the shortcode, you can see our guide on how to add a shortcode in WordPress.

How to Automatically Display the Affiliate Disclosure with WPCode

With WPCode, there are lots of different ways to add an affiliate disclosure to your WordPress website, including automatically adding it to every post.

This can save you a lot of time and effort, since you don’t need to add the shortcode manually. However, the disclosure will appear in the same location on every page.

To automatically add the disclaimer, simply create a new custom code snippet by following the same process described above. However, this time open the ‘Code Type’ dropdown and select ‘HTML Snippet.’

Adding an HTML snippet to WordPress

You can now add your disclaimer in the code editor, complete with the formatting that you want to use. For example, here we’re adding a simple disclaimer as a new paragraph:

<p>This site may contain links to affiliate websites, and we receive an affiliate commission for any purchases made by you on the affiliate website using such links.</p>

Next, scroll to the ‘Insertion’ section and open the ‘Location’ dropdown.

You can now choose where this disclaimer should appear, such as ‘Insert After Post’ or ‘Insert Before Content.’

Automatically inserting an affiliate disclaimer

You can then go ahead and enable the snippet by following the same process described above. WPCode will now automatically show the disclaimer on every page, post, and custom post type, without you having to add the shortcode manually.

Method 3. Add Affiliate Disclosure Using Full-Site Editor (Block-Enabled Themes Only)

If you’re using a block-based theme like Hestia Pro, then you can add an affiliate disclosure to your theme’s blog post template.

This is a good choice if you want to show the exact same disclosure on every blog post. However, you won’t have the option to change the style or text on individual posts, so it’s not a good choice if you want to show different information on different pages.

To use this method, go to Themes » Editor in the WordPress dashboard.

Opening the WordPress full-site editor (FSE)

By default, the full-site editor will show your theme’s home template, so you’ll typically want to select a new template.

If you want to show the affiliate disclosure across your entire website, then we recommend adding it to the footer template part. 

However, if you just want to show the disclaimer on your blog posts, then click on Templates on the left-hand side of the screen in the Design section.

Adding an affiliate disclosure using the full-site editor (FSE)

The editor will now show all the layouts that make up your WordPress theme.

Simply click go ahead and click on ‘Single.’

Adding an affiliate disclaimer to a WordPress blog post template

WordPress will now show a preview of the template.

To edit this template, go ahead and click on the small pencil icon.

Editing a blog post template in a block-enabled WordPress theme

With that done, click on the blue ‘+’ icon in the top left corner.

In the search bar that appears, type in ‘Paragraph’ to find the right block. 

Adding a Paragraph block to a full-site template

You can now drag and drop the block onto the area where you want to show the disclaimer. 

Now, click on the block and type in your affiliate disclaimer. 

Adding text to a WordPress blog template

You may also want to change how the disclaimer looks. 

To change the font size, background color, and more, simply click to select the paragraph block. Then, select the ‘Block’ tab in the right-hand menu.

Styling affiliate disclaimers using the WordPress FSE block-based editor

You can now change the background color and text color, or make the disclaimer bigger or smaller using the settings in the right-hand menu.

When you’re happy with how the disclaimer looks, click on the ‘Save’ button.

An example of an affiliate disclaimer, created using the FSE

Now, if you visit any blog post on your affiliate website, you’ll see the disclaimer in action. 

We hope this article helped you learn how to add affiliate disclosures for each blog post automatically. You can also go through our guide on the best giveaway and contest plugins and how to create an email newsletter the RIGHT way.

If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.



Source link

Keep an eye on what we are doing
Be the first to get latest updates and exclusive content straight to your email inbox.
We promise not to spam you. You can unsubscribe at any time.
Invalid email address

AFFILIATE MARKETING

Best deals this week: Get up to 40% off brands like Xbox, Hydro Flask, KitchenAid

Published

on

ByChi Tran WLS logo

Friday, December 1, 2023 5:33PM

Best deals this week Get up to 40 off brands

An image of Xbox, KitchenAid mixer, Hydro Flask and Airtag.

creativeContent

As a participant in multiple affiliate marketing programs, Localish will earn a commission for certain purchases. See full disclaimer below*

Christmas is coming, and with that comes some great weekly sales for your holiday and Christmas gift shopping. Below, we’ve rounded up the five best deals you can shop for right now. Like all sales, the discounted rates mentioned below may go up at any time, so make sure to fill your carts up soon before they expire. Each deal is also vetted by our team of deal experts, so you know the products you’re buying are either top-rated, staff favorites or from a brand we trust.

Best deals of the week

1701455163 159 Best deals this week Get up to 40 off brands

Anker Soundcore 2 Portable Bluetooth Speaker

Highly affordable yet mightily powerful, the Anker Soundcore 2 will solve all of your speaker needs without breaking the bank.

1701455163 672 Best deals this week Get up to 40 off brands

KitchenAid Ultra Power Hand Mixer

One of the bestselling products during Amazon’s Black Friday week, the KitchenAid Ultra Power Hand Mixer is currently still on sale for all your baking and whisking needs.

Apple AirTag 4 Pack d65f3348 4afe 4667 bc2c 85651b97df3b.4bff1ee59f291884e1b9c75b19e98770

This amazing value deal for the 4-pack AirTag is perfect for the family to keep track of all their belongings.

1701455163 625 Best deals this week Get up to 40 off brands

The Hydro Flask stainless steel is on sale for all your water needs throughout the holidays.

Xbox Series X Diablo IV Bundle 80ba5433 10ff 4d14 a7a4 cc2649179b8d.0eda67c3168767aeeccf31aa1e75e227

Xbox Series X – Diablo IV Bundle

The Xbox Series X Diablo IV Bundle is one of the bestselling Walmart items this past week, so get your bundle at its lowest price just in time for the holiday season.

By clicking on the featured links, visitors will leave Localish.com and be directed to third-party e-commerce sites that operate under different terms and privacy policies. Although we are sharing our personal opinions of these products with you, Localish is not endorsing these products. It has not performed product safety testing on any of these products, did not manufacture them, and is not selling, or distributing them and is not making any representations about the safety or caliber of these products. Prices and availability are subject to change from the date of publication.

Copyright © 2023 WLS-TV. All Rights Reserved.

Source link

Keep an eye on what we are doing
Be the first to get latest updates and exclusive content straight to your email inbox.
We promise not to spam you. You can unsubscribe at any time.
Invalid email address
Continue Reading

AFFILIATE MARKETING

With Its Novel Affiliate Model, The Sporting News Bets on Lifetime Value

Published

on

With Its Novel Affiliate Model, The Sporting News Bets on Lifetime Value

Sports publisher The Sporting News raised $15 million in Series A funding in September, in large part because of the unique affiliate marketing model it employs.

The company, like a growing number of sports media newsrooms, generates revenue from referring its readers to sportsbooks and gambling operators. 

But unlike traditional affiliate models—where retailers like Amazon pay publishers like Wirecutter on a cost-per-acquisition basis each time a customer makes a purchase—The Sporting News uses a revenue-share structure, meaning that it receives a percentage of the lifetime value of the new customers it sends to gambling operators.

“When it comes to delivering a customer to a platform with a longer use case, it is short-sighted to take a one-time fee,” The Sporting News CEO Rich Routman said. “If I send someone to a streaming platform, and they spend $10 a month for five years, why would I take a $20 bounty? I’ll take $2 a month for five years.”

The model enables The Sporting News to act more as a long-term partner to the sportsbooks it works with, sharing in their successes by generating revenue when their referrals spend money. This year, the sports-betting industry in the U.S. is projected to generate $7.62 billion in revenue, according to Statista.

Interest in this kind of model has risen as publishers look to diversify their revenue streams.

While affiliate marketing and commerce are critical in these efforts, they are challenging because publishers have to stack up thousands—if not millions—of individual purchases to make the operation worthwhile. 

But revenue-share models let publishers generate recurring income from the customers they generate while placing the onus on them to source quality referrals—a dynamic similar to performance advertising.

Potential in other publishing sectors

The revenue-share model is commonplace in Europe, where the sports-betting market is more mature. The Dutch firm Better Collective, for instance, projects 2023 revenues of $345 million, according to company filings.

But it’s rarer in the U.S., where gambling on sporting events became legal federally just five years ago. So far, only sports publishers have embraced the model, as it functions best in industries in which customers have high lifetime values.

But there is no technical reason why it wouldn’t suit other media companies with similar market dynamics, such as software sales or subscription services, said Bryce Widelitz, vice president of publisher innovation at partnerships management platform impact.com.

Keep an eye on what we are doing
Be the first to get latest updates and exclusive content straight to your email inbox.
We promise not to spam you. You can unsubscribe at any time.
Invalid email address
Continue Reading

AFFILIATE MARKETING

How Creators Are Powering Social Commerce

Published

on

How Creators Are Powering Social Commerce

Storyboard

In the ever-evolving landscape of social media and shopping, a profound shift is underway as retail giants like Amazon and Walmart, along with social media platforms such as TikTok and YouTube, rely on creators to delve deeper into social commerce.

At the forefront of this transformative journey are creators, emerging as pivotal players in steering the course of social commerce.

From Walmart launching its own creator marketplace to the emergence of TikTok Shop, here are the key developments.

Source link

Keep an eye on what we are doing
Be the first to get latest updates and exclusive content straight to your email inbox.
We promise not to spam you. You can unsubscribe at any time.
Invalid email address
Continue Reading

Trending