How to Remove the Footer on My Site
-
Can anyone help me remove “Powered by WordPress ? FuduGo WordPress Themes”?
Below the codes for footer.php… Thanks!<?php /** Themify Default Variables @var object */ global $themify; ?> <?php themify_layout_after(); //hook ?> </div> <!--/body --> <div id="footerwrap"> <?php themify_footer_before(); //hook ?> <div id="footer" class="pagewidth clearfix"> <?php themify_footer_start(); //hook ?> <?php get_template_part( 'includes/footer-widgets'); ?> <?php if (function_exists('wp_nav_menu')) { wp_nav_menu(array('theme_location' => 'footer-nav' , 'fallback_cb' => '' , 'container' => '' , 'menu_id' => 'footer-nav' , 'menu_class' => 'footer-nav')); } ?> <div class="footer-text"> <?php if(themify_get('setting-footer_text_left') != "") { echo themify_get('setting-footer_text_left'); } else { echo '? <a href="'.home_url().'">'.get_bloginfo('name').'</a> '.date('Y') . ''; } ?> <?php if(themify_get('setting-footer_text_right') != "") { echo themify_get('setting-footer_text_right'); } else { echo apply_filters('themify_footer_text_two', 'Powered by <a href="https://www.remarpro.com">WordPress</a> ? <a href="https://fudugo.com">FuduGo WordPress Themes</a>'); } ?> </div> <!--/footer-text --> <?php themify_footer_end(); //hook ?> </div> <!--/footer --> <?php themify_footer_after(); //hook ?> </div> <!--/footerwrap --> </div> <!--/pagewrap --> <?php /** * Stylesheets and Javascript files are enqueued in theme-functions.php */ ?> <!-- wp_footer --> <?php wp_footer(); ?> <?php themify_body_end(); //hook ?> </body> </html>
[Please use the code buttons when posting code here – as is your code may have been corrupted.]
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘How to Remove the Footer on My Site’ is closed to new replies.