Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <?php
  2.  
  3. remove_action('thesis_hook_footer', 'thesis_attribution'); // Remove Thesis attribution
  4. add_action('thesis_hook_before_footer', 'add_custom_attribution'); // Custom footer attribution
  5.  
  6. function add_custom_attribution () { ?>
  7.  
  8.  
  9. <p>&copy; <?php echo date("Y"); ?> All Rights Reserved</p>
  10. <p>Site design & Copy by Melissa Breau</p>
  11.  
  12. <?php }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement