Supplementary Student InformationWould you like to learn how to make money from home with affiliate marketing? Get more information here. (more to come) Google search trick that will give you more accurate numbers
Google search trick that will give you more accurate numbersWhen you are doing an allintitle search as described on page 20 of the Affiliate Marketing Schoolbook, you might sometimes find that the number of results for an allintitle search is actually more than what shows for a quoted search. You're thinking, This doesn't make sense. And you're right, it doesn't. Whoever said that Google had to make sense? Anyway, here's a tip I recently learned from the Warrior Forum that can help you really drill down to the actual number of allintitle results. Do your search and then scroll all the way to the bottom of the Google results page. Click on the last page of results (page 10). Go to the bottom of the page and click on the last page again, whatever it is. Keep doing that until there are no more pages showing. Now check the number of results. It will probably be far, far less than at first. But to make sure that this is really the number you want, go to the bottom of the page again, and click on the link that says, "In order to show you the most relevant results, we have omitted some entries very similar to the # already displayed. If you like, you can repeat the search with the omitted results included." When the SERPs come up again, repeat the first part of the trick, choosing the last page until there are no more pages. The number of results that shows at that point will be more accurate. It probably went up from the previous number but way, way down from the number you got before using this method. Why does this happen? Who knows with Google? Something about their algorithm gives out conflicting numbers. So don't question, just go with the flow! :) Using this trick will help you gather keywords that you might have discarded before as having too much competition, although I must remind you that for any keyword, your actual bottom-line number of competitors is always just 10. See Lesson 5 for an explanation of why this is so.
How to do a 301 redirectA 301 redirect is like the change-of-address form you fill out at the post office when you move. If you've moved a page on your site, it tells the server, "Hey, this page has moved; here's where it is now." It is also useful if you have two domains that go to the same site; the second one should be pointed to the site using a 301 redirect.
Hiding the blog title and description so you can use a custom header imageMost people like to create a custom header for their site, rather than the plain text title and description that show up by default. The problem is that the text will still be there "on top" of your header, which of course is not what we want. How do you get rid of it? There are several ways to accomplish this. The title and description of your site shows up in the header of your site right now because you entered it in your WordPress dashboard under General > Settings. If you delete it there, it will go away, but you lose the advantage of having that text read by the search engines. It also will not appear at the top of the browser, which will make it more difficult for your visitors to identify your site if they have several tabs or windows open. Another disadvantage is that if you publish an RSS feed so people can read your content in their news aggregators, your feed will show up with a blank space where your title should be. So I do not recommend this option; it's not good SEO or even good common sense. What you can do is go into your WordPress theme and put a value in the CSS that moves the blog title so far off the page no reader could see it, but the search engines still can. Alternatively, you could use the code display: none;, which would accomplish the same thing. There is an advantage to the negative indent method, though. Apparently, some newer text readers will not read "display: none;" so to be safe, I recommend the indent option. Go into the Editor under Appearances in your dashboard and look for #header in the stylesheet. Add the line in bold below. (Note: #header may be named #masthead or something synonymous in some themes.) Negative indent method: #header h1 { Display none method: #header h1 { The same can be done for the blog description under the title. Look for code like this: #headerimg .description { #headerimg .description { Go back to your site and refresh the page to make sure it worked. If it didn't, double-check to make sure you added a semi-colon after -5000px or display: none. CSS needs that semicolon to work properly. FYI: There is some debate as to how Google views the practice of hiding text, but they understand that people like to use custom headers, so if you keep the wording on your custom header the same as the wording that you're "hiding," you’ll be fine. They’ll be able to see that you’re not trying to fool the search engines.
Determining custom header image sizeHow do you know how big to make the custom image for your header? To find out the exact dimensions, look for this code in the style.css file: #headerimg { In this example, you would design your image to be 740 pixels wide by 192 pixels high. If you are hiring a designer, give her these dimensions; she'll know what to do with them. If you're doing it yourself, check the help files for the software you are using to design the header. Much more information about headers and how to customize them for WordPress, check out http://codex.wordpress.org/Designing_Headers
How to "nofollow" a linkThe subject of dofollow vs. nofollow can be very confusing, especially when things keep changing. So a lot of Internet marketers are fuzzy on whether you should nofollow outgoing links or not. Google doesn't always clarify things too well, so we are sometimes left guessing. Page 243 of the Affiliate Marketing Schoolbook says that you should nofollow internal links such as those to your privacy page, contact page, etc. Since the AMS was published, the consensus on this has shifted somewhat. I would no longer worry about doing that. However, I would still nofollow links to external pages that don't need your "link juice." If you do want to "spend" some Page Rank on the sites you link to, that's fine, meaning that you're allowing those sites to share the benefit of your Page Rank. No sense giving extra SEO benefit to huge news sites or shopping sites. They already have plenty. You don't "lose" page rank by sharing; it's just that you're more or less vouching for the site in question and want it to benefit. And the more links you link out to, the less page rank each one gets, since you can only pass on about 85% of your own PR and it gets split evenly. Adding nofollow means you don't want to pass page rank on to the linked site. In a nutshell, nofollowing a link is as simple as adding the code: rel="nofollow"right after the URL of a link, like this: <a href="http://siteyourlinkingto.com" rel="nofollow">Anchor text</a>It can be done even more easily with the HeadSpace2 plugin by designating nofollow underneath the post box before you publish. More info on the nofollow tag can be found at http://www.google.com/support/webmasters/bin/answer.py?hl=en&answer=96569
How to exclude pages from navigation tabs and sidebarsIn WordPress themes that are designed with navigation tabs or buttons above or below the header, any Pages you create in the WordPress administration panel will appear as tabs. Some people like to have the Pages listed only in the sidebar and not in the navigational tabs. Also, since some of the Pages you create are ones you probably won't want there, such as a privacy policy or a sitemap, here's how to remove them from the tabs if you need to. Go to Appearance > Editor and choose header.php in the right column. Find the "wp_list_pages" code (bolded below): add_action('wp_list_pages', 'art_list_pages_filter'); Note: This may appear in the functions.php file instead of header.phpyou'll have to figure out where your particular theme puts this instruction. Add this code on the next line (don't forget the semi-colon at the end): wp_list_pages(exclude=1'); In place of the "1," put the ID numbers of the Pages you want excluded, separated by commas. NOTE: If you're simply excluding Pages from the Pages widget in the sidebar, go to Appearance > Widgets and open the Pages widget on the right side of the screen by clicking on the little triangle. There should be a field that says "Exclude:" Put in the Page IDs, separated by commas. Make sure to Save. To find out what the Page IDs are, go to Pages > Edit and hover your mouse over the Page title in question. While doing that, look at the bottom of your browser window. At the very end of the code that shows there will be that Page's number. For instance, if you see this: http://yoursite.com/wp-admin/page.php?action=edit&post=5 ...the number you want is 5. If at some point you want to put a Page back as a tab or button, just reverse your change by deleting that Page's number from the wp_list_pages code.
How to add text navigation to the footerI usually put my privacy policy link in the footer because it does not need to be prominentit just has to be somewhere. First I make sure it's excluded from the navigation tabs, as shown above, and then I go to Appearance > Editor and open footer.php. If there are already text links in your footer and you want to add the privacy policy at the end, go to the end of the link as shown below and put a space, a hyphen, or a pipe character like this | (the pipe is above the backslash on most keyboards). Put spaces on both sides of the symbol for easy readability, like this: <a href=”http://yoursite.com/existing-link” title=”Existing Link”>Existing Link</a> | Then add the code for the privacy policy link, like this: <a href=”http://yoursite.com/existing-link” title=”Existing Link”>Existing Link</a> | <a href=”http://yoursite.com/privacy-policy” title=”Privacy Policy”>Privacy Policy</a> Here's how it will look on your site: Existing Link | Privacy Policy
Using the WP-Sticky pluginInformation coming soon
Benefits of the Thesis theme and how to use itI've written a blog post about this here, so I'll just direct you to that. Would you like to learn how to make money from home with affiliate marketing? Get more information here. |
![]() |