You are here

function kwresearch_get_kid in Keyword Research 6

Same name and namespace in other branches
  1. 7 kwresearch.module \kwresearch_get_kid()

Returns the kid for a given keyworld

Parameters

unknown_type $keyword:

File

./kwresearch.module, line 366

Code

function kwresearch_get_kid($keyword) {
  $keyword_obj = kwresearch_load_site_keyword($keyword);
  return $keyword_obj->kid;
}