1. Home
  2. Docs
  3. The Honeycomb Theme
  4. Changing The Footer Text

Changing The Footer Text

The footer of Honeycomb will by default read something like so:

© Honeycomb Demo 2018	
Honeycomb powered by Property Hive.

You can overwrite this by following the steps below. Note that we recommend you put a child theme in place if making changes to files.

Add Code to functions.php

Most of the functions used in Honeycomb to output elements are ‘pluggable’ meaning you can override them with your own version of the function within functions.php.

In the scenario of the footer, there is a function called honeycomb_credit() which can be overwritten by adding something like so to your child theme’s functions.php file:

function honeycomb_credit() {
    echo '<div class="site-info">YOUR CUSTOM FOOTER TEXT GOES HERE</div>';
}
Was this article helpful to you? No 1 Yes

How can we help?