Skip to content

Script SEOHide designed to hide links from search engines.

License

Notifications You must be signed in to change notification settings

hakudjin/SEOHide

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

SEOHide

Script SEOHide designed to hide links from search engines. It is written in the PHP and JavaScript (using jQuery).

Installation

Copy files in you directory.

Usage

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>

About

Script SEOHide designed to hide links from search engines.

Resources

License

Stars

Watchers

Forks

Packages

No packages published