document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. /** Custom Genesis Footer Text and Links */
  2. remove_action( 'genesis_footer', 'genesis_do_footer' );
  3. add_action( 'genesis_footer', 'mywebsite_footer' );
  4. function mywebsite_footer() {
  5. ?>
  6. <p>&copy; Copyright <?php echo date('Y'); ?> <a href="http://www.yourwebsite.com">Your Website</a> &middot; All Rights Reserved &middot; <a href="http://www.yourwebsite.com/sitemap.xml" target="_blank">Sitemap</a> &middot; </p> <a href="http://www.yourwebsite.com/terms-of-use/" target="_blank"> Terms of Use </a>&middot;<a href="http://www.yourwebsite.com/privacy-policy/" target="_blank"> Privacy Policy </a>&middot;
  7. <?php
  8. }
');