Simple, but possibly stupid question....

This module improves the sites appearence to external search engines, given. But does this module also improve the internal site search feature of drupal?

I guess the question is, when I search my site with the search functions included in drupal core, does this search pay attention to meta tags??

A quick and simple answer would be much appriciated!

ZuluWarrior

Comments

Robrecht Jacques’s picture

Yes.

Following code in nodewords.module adds the content of the KEYWORDS and DESCRIPTION meta tag (if not auto-generated) to the search index:

    case 'update index':
      $output = '<h2>' . $node->nodewords['keywords'] . '</h2>';
      $output .= '<h3>' . $node->nodewords['description'] . '</h3>';
      return $output;

Hope this answers your question.

ZuluWarrior’s picture

Perfect, thanks for taking the time to look for that, Robrecht.

Thanks!

ZuluWarrior

ZuluWarrior’s picture

Status: Active » Closed (fixed)

Closing support request ;)