Display a custom message in the footer.
add_action('wp_footer', 'codebykp_custom_footer_message');
function codebykp_custom_footer_message() {
echo '<div class="custom-footer-message">© ' . date('Y') . ' Your Company Name. All rights reserved.</div>';
}