- Joined
- Sep 9, 2016
- Messages
- 67
- Likes
- 55
- Degree
- 0
A web page moves linearly. From top to bottom and it's naturalistic to think that the post important call to actions are reserved from the top- and while the bottom doesn't always mean it's the least important, how would you prioritize your call-to-action blocks in your article/content?
Examples of call-to-action blocks
1. Ad
2. Related Content (Encourages brand loyalty, traffic)
3. Affiliate Programs (I usually have about two related affiliate programs that is a perfect fit for each article)
This matters to me because I don't tailor every article with a call to action. Everything is done via php depending on the category of content which is well defined in scope. A typical article is at least 800 words or more.
So there are three revenue generating modules that are plugged into the body of my articles. At the title is the first Ad block.
That makes up to 3 Ad blocks, 3 Related Content blocks and 2 Affiliate Program Blocks. Looking at this structure, I do think that I may have too many related content blocks (1 in the middle of content, 1 at the bottom and 1 on the sidebar), but relative to it's own type, it is spaced out appropriately.
I guess what I'm trying to ask in specific regard is, do you think I have too much around my article? And if you had your way with my site, how would you prioritize your blocks and for loyalty/traffic or revenue? More importantly, why?
P.S. All these blocks within the content are allocated automatically after x number of paragraphs, which I define. If the content is too short, some of the blocks won't be displayed. Which is good.
Examples of call-to-action blocks
1. Ad
2. Related Content (Encourages brand loyalty, traffic)
3. Affiliate Programs (I usually have about two related affiliate programs that is a perfect fit for each article)
This matters to me because I don't tailor every article with a call to action. Everything is done via php depending on the category of content which is well defined in scope. A typical article is at least 800 words or more.
So there are three revenue generating modules that are plugged into the body of my articles. At the title is the first Ad block.
HTML:
<head>
<h1>title</h1>
<ad-unit>
</head>
<post>
<p>...</p>
<ad-unit>
<p>...</p>
<related-content>
<p>...</p>
<ad-unit>
<p>...</p>
<affiliate-program>
<p>...</p>
<script>
if (word-count > x)
insertmore(call-to-action-blocks)
</script>
<post>
<sidebar>
<related-content>
</sidebar>
<footer>
<related-content>
<affiliate-program-2>
</footer>
That makes up to 3 Ad blocks, 3 Related Content blocks and 2 Affiliate Program Blocks. Looking at this structure, I do think that I may have too many related content blocks (1 in the middle of content, 1 at the bottom and 1 on the sidebar), but relative to it's own type, it is spaced out appropriately.
I guess what I'm trying to ask in specific regard is, do you think I have too much around my article? And if you had your way with my site, how would you prioritize your blocks and for loyalty/traffic or revenue? More importantly, why?
P.S. All these blocks within the content are allocated automatically after x number of paragraphs, which I define. If the content is too short, some of the blocks won't be displayed. Which is good.
Last edited: