Keyword Research the BTB Way

is there an easy template or way to make it so it rotates the new articles? truncunated at the bottom of your page?

With this method do you mostly just promote inner pages then and not main page.
 
is there an easy template or way to make it so it rotates the new articles? truncunated at the bottom of your page?

With this method do you mostly just promote inner pages then and not main page.


This is really easy if you know php. The rotation is utilizing the basic random function. Truncate is really simple as well. I use a pretty easy to use and understand function to do this, that also appends the truncated article end with elipses. Let me know if you'd like me to post it.
 
is there an easy template or way to make it so it rotates the new articles? truncunated at the bottom of your page?

With this method do you mostly just promote inner pages then and not main page.

I just add the articles and it puts them on the page in cronological order that they are posted with the newest article on top and the oldest on the bottom of the page with 10 articles on the page.

I do promote mainly the inner pages.
 
so, when you start building a massive site how long until you start to see good serp results? and does every page or article get its own linkpush?
 
so, when you start building a massive site how long until you start to see good serp results? and does every page or article get its own linkpush?

Because I add so much content, 5,000 words a day, I see action inside of 3 weeks.
 
This is really easy if you know php. The rotation is utilizing the basic random function. Truncate is really simple as well. I use a pretty easy to use and understand function to do this, that also appends the truncated article end with elipses. Let me know if you'd like me to post it.

That would probably be a good share, Seuss, go ahead and port it if you don't mind.
 
Here's the code in PHP to truncate a string for your given length. Remember, it returns a string with which you can then print to the screen/save to a dbase/etc.

Code:
<?php
// Truncate Strings Function - last updated 6.21.2010
//
// This function takes in the following (4) arguments:
// $string - the text you want to truncate
// $limit - after how many characters do you want to truncate
// $break - the character, you want have a break on 
//          (ie, break on a space, not in the middle of a word)
// $pad - chacters to add to the end
//
// This function returns a string, for saving/output/etc.
//
function truncate($string, $limit, $break=" ", $pad="...") 
{ 
    // return with no change if string is shorter than $limit 
    if(strlen($string) <= $limit) 
        return $string; 
    
    $string = substr($string, 0, $limit); 
    
    if(false !== ($breakpoint = strrpos($string, $break))) 
    { 
        $string = substr($string, 0, $breakpoint); 
    }
     
    return $string . $pad; 
}
?>
 
Here's the code in PHP to truncate a string for your given length. Remember, it returns a string with which you can then print to the screen/save to a dbase/etc.

Thanks for sharing that, +repped you.
 
I opened this thread thinkin it was b2b keyword research. Imagine my surprise to find a gem like this on BHW! *i'm a white hat spy*
 
I have a question Greg. What about for local keywords? I'm going insane trying to find keywords with things like "optometrist in NYC" for my clients who are looking for local business. Google's keyword tool doesn't seem to pay attention when input location based keywords, it just reverts to national keywords.

Whatsayyou?
 
My little 150 page site has 500 articles on it; one for each page but that is my smallest site... I now build much larger sites.

500 articles on your smallest site. THat is lots of articles.

How you manage to get that many articles written? Outsource? That will cost quite money for that.
 
I have a question Greg. What about for local keywords? I'm going insane trying to find keywords with things like "optometrist in NYC" for my clients who are looking for local business. Google's keyword tool doesn't seem to pay attention when input location based keywords, it just reverts to national keywords.

Whatsayyou?

I'm going to have to play with that and see what I come up with for that as I personally don't generally dabble in Local SEO.

Hopefully, I'll come up with something and make you feel obligated to buy me a drink next month.
 
I have a question Greg. What about for local keywords? I'm going insane trying to find keywords with things like "optometrist in NYC" for my clients who are looking for local business. Google's keyword tool doesn't seem to pay attention when input location based keywords, it just reverts to national keywords.

Whatsayyou?

I was unable to make that anything worthwhile... only came up with about 215 KWs and nothing earth shattering... I'll have to buy Taktical a drink it appears.

I'd be interested in hearing, as well as a lot of others being interested in hearing, what some of you are doing for local SEO KWs.

I don't do any local SEO myself so my experience is extremely limited.
 
Last edited:
500 articles on your smallest site. THat is lots of articles.

How you manage to get that many articles written? Outsource? That will cost quite money for that.

I do outsource everything and it does cost a pretty penny.

If you want to sail a big ship you have to be in deep water.
 
I've found "services" "firm" "company" and "companies" to be searched often. Try using zip codes, city + state. City + abbreviated state. city at the front of the keyword. City at the end. Excel's find and replace does a good job with this.
 
sorry for a little off topic, can you disclose your link building tactic for your pretty large hundreds keywords site?
 
sorry for a little off topic, can you disclose your link building tactic for your pretty large hundreds keywords site?

No, I don't want to address the specifics in this thread... but with any web site you have, I would suggest a well rounded balanced diversity of backlinks.
 
wikipedia thing is interesting im definatly going to add that to my research

5. delete above .8 ~ curious you mean delete the kw with high google adwords competion? isnt that the opposite of what to do? isnt high google competion on adwords refer to the people buying those adds not the people seoing the kw? wouldnt the max competion be better?
 
isnt high google competion on adwords refer to the people buying those adds not the people seoing the kw?

Actually it is both... the reason they are paying more per ad is because the KWs they are targeting harder to rank and thus more expensive.

I just see that as the law of diminishing returns; I know I can get a .80 KW ranked but at what cost?

I could spend a lot of time/energy/money but the return, to me, isn't worth it.

I would rather hit my target KWs with less time/energy/money and grab more of the lower hanging fruit.
 
Back
Top