Script SEOHide designed to hide links from search engines. It is written in the PHP and JavaScript (using jQuery).
Copy files in you directory.
Require SEOHide.php.
<?php
require_once 'SEOHide/SEOHide.php';
?>
Call method SEOHide::link() or function seohide_link().
<?php
SEOHide::link('Google Search', 'http://www.google.com/', 'class="some-class"');
?>
or
<?php
seohide_link('Google Search', 'http://www.google.com/', 'class="some-class"');
?>
Call method SEOHide::print_javascript() or function seohide_print_javascript() end site.
<!doctype html>
<html lang="en">
<head>
...
</head>
<body>
...
<?php
SEOHide::print_javascript();
?>
</body>
</html>
or
<!doctype html>
<html lang="en">
<head>
...
</head>
<body>
...
<?php
seohide_print_javascript();
?>
</body>
</html>