You are here

function theme_node_noindex_header in Node Noindex 6

Return value

A meta tag with noindex instructions.

1 theme call to theme_node_noindex_header()
node_noindex_nodeapi in ./node_noindex.module
Implementation of hook_nodeapi().

File

./node_noindex.module, line 34

Code

function theme_node_noindex_header() {
  return '<meta name="robots" content="noindex" />';
}