Remove 'Job Board Software | Powered by WordPress' at bottom of worpress site
Hi Guys
I am struggling to find out how to remove the 'Job Board Software | Powered by WordPress' text at the bottom of my wordpress site.
I have read many posts on this forum and still having no joy - people seem to be pointing me in the directing of the 'theme-footer.php' within editor.
I have copied the code in this section below: Can you tell me what i need to delete from this? Or if i need to look somewhere else.
Thanks in advance
<?php
/**
* Add footer elements via the wp_footer hook
*
* Anything you add to this file will be dynamically
* inserted in the footer of your theme
*
* @since 1.0
* @uses jr_footer_actions
*
*/
// insert the google analytics tracking code in the footer
function jr_google_analytics_code() {
echo "\n\n" . '<!-- start wp_footer -->' . "\n\n";
if (get_option('jr_google_analytics') <> '')
echo stripslashes(get_option('jr_google_analytics'));
echo "\n\n" . '<!-- end wp_footer -->' . "\n\n";
}
add_action('wp_footer', 'jr_google_analytics_code');
?>
Last edited by jomarkosabel; June 6th, 2012 at 10:11 AM.