简体   繁体   中英

Wordpress theme footer can't be customized

I can't customize footer on wordpress "colibri WP" theme or add any widgeds to it nor change copyright text. I tried to change the code in dashborard -> theme editor -> footer.php and this is the code written there:

</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>

All I can do is delete footer completely. Is there a way to change copyright text and add widgets/social media icons to it?

I can't customize footer on wordpress "colibri WP" theme or add any widgeds to it nor change copyright text. I tried to change the code in dashborard -> theme editor -> footer.php and this is the code written there:

</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>

All I can do is delete footer completely. Is there a way to change copyright text and add widgets/social media icons to it?

Go to edit footer.php and edit the content:

<?php //colibriwp_theme()->get( 'footer' )->render(); ?></div><!-- #page -->
<div style="width:100%;text-align:center;">
    <p>
        TEXT HERE . TEXT HERE. TEXT HERE. TEXT HERE.
    </p>
</div>
<?php wp_footer(); ?>
</body>
</html>

Save and done.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM