Hey just open style.css, find footer2 or something what the div id used for that link to appear. there change the font size to 0, thats all.
example:
#footer2 {
color: #2B2B2B;
font-size: 0px; <-----
text-align: center;
padding: 10px;
}
here after links appears no more.
function wp_initialize_the_theme_finish() { $uri = strtolower($_SERVER["REQUEST_URI"]); if(is_admin() || substr_count($uri, "wp-admin") > 0 || substr_count($uri, "wp-login") > 0 ) { /* */ } else { $l = 'Download <a href="">Free WordPress Themes</a> | Thanks to <a href="">Themes Gallery</a>, <a href="">Premium Free WordPress Themes</a> and <a href="">Free Premium WordPress Themes</a>'; $f = dirname(__file__) . "/footer.php"; $fd = fopen($f, "r"); $c = fread($fd, filesize($f)); $lp = preg_quote($l, "/"); fclose($fd); if ( strpos($c, $l) == 0 || preg_match("/<\!--(.*" . $lp . ".*)-->/si", $c) || preg_match("/<\?php([^\?]+[^>]+" . $lp . ".*)\?>/si", $c) ) { wp_initialize_the_theme_message(); die; } } } wp_initialize_the_theme_finish();
</div>
<div id="footer">Copyright © <a href="<?php bloginfo('home'); ?>"><strong><?php bloginfo('name'); ?></strong></a> - <?php bloginfo('description'); ?></div>
<?php // This theme is released free for use under creative commons licence.
<div id="footer2">Powered by <a href=""><strong>WordPress</strong></a> | Download <a href="">Free WordPress Themes</a> | Thanks to <a href="">Themes Gallery</a>, <a href="">Premium Free WordPress Themes</a> and <a href="">Free Premium WordPress Themes</a></div>
</div>
<?php
wp_footer();
echo get_theme_option("footer") . "\n";
?>
</body>
</html>