Hello,
I got theme and somebody put xxx links in <?php wp_footer(); ?>.
Where can I find this links and delete them?
Thank you in advanced. ;)
Hello,
I got theme and somebody put xxx links in <?php wp_footer(); ?>.
Where can I find this links and delete them?
Thank you in advanced. ;)
Most likely they would be footer.php
No, this(<?php wp_footer(); ?>) is in footer.php
<?php wp_footer(); ?>
is the php code to get footer.php file open footer.php file in editor and if you have those links are in footer most likely they will be in that file.
This is the end of footer.php
<!-- //END CUSTOM FIELDS -->
<?php javascript_footer() ?>
<?php wp_footer(); ?>
<?php echo stripslashes(get_option("analytics_code")); ?>
<?php echo stripslashes(get_option("google_adsensetracking_code")); ?>
</body>
</html>
And link is in <?php wp_footer(); ?>.
Who ever put those links in must have put it in that javacript
This topic has been closed to new replies.