how can i remove the wordpress logo (linkback) from the footer? im totally new to wordpress.
how can i remove the wordpress logo (linkback) from the footer? im totally new to wordpress.
Look for the image/link in the "footer.php" Theme template file.
where is this file located? and how can i edit it?
<wordpress root directory>\wp-content\themes\<theme-name>\footer.php
Use your text editor of choice.
i found it. opened it with note pad, searched for the line powered and found it. but below it says not to delete anything cuz it might hamper the entire website.. if it is possible can you highlight the line that i should delete and paste it here then i can easily delete it. thanks alot
it says not to delete anything cuz it might hamper the entire website
what theme are you using?
the exact code will be different from theme to theme - and some theme's are 'protected' by their author's against changes to their footer links.
i am using the default 3.1 theme. twentyten
do you really want to do this, and not honor the creators of the theme and the software, by simply leaving this link to wordpress in your site?
then try to remove:
<a href="<?php echo esc_url( __( 'http://wordpress.org/', 'twentyten' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentyten' ); ?>" rel="generator"><?php printf( __( 'Proudly powered by %s.', 'twentyten' ), 'WordPress' ); ?></a>
thanks alot for the help. i need to do this because i need to make sure my site looks professional.
do you really want to do this, and not honor the creators of the theme and the software, by simply leaving this link to wordpress in your site?
Nonsense. TwentyTen is released under GPL. The end user has every right to modify the Theme in any way whatsoever.
(The note in question actually refers to removing the HTML-tag markup in the "footer.php" template file. Changing that markup can/will have adverse consequences on the rendering of the site, if such changes result in invalid markup.)
But I'd do it as a Child Theme, to which is added the modified "footer.php" template file; otherwise, the change will get over-written when TwentyTen is updated in the future.
This topic has been closed to new replies.