<?php
/**
* @author Michael White
* @link http://geckografix.guru
*/
//* Adds widget to footer-slide
add_filter( 'genesis_footer_output', 'filter_custom_footer' );
function filter_custom_footer( $output ) {
$output = sprintf( '<h1 itemprop="headline" class="site-title" style=" text-align:center;"><a title="Homepage" href="' . get_bloginfo('url') . '"><span class="handwritten" style="font-size:30px; color: #000;">Casa de Sueno</span></a></h1>' );
$output .= sprintf( '<p>%s<span style="color:red; line-height: 0.7;" class="dashicons dashicons-heart animated pulse infinite"></span>%s<a href="' . get_bloginfo('url') . '">%s</a>%s<a href="http://geckografix.guru/">%s</a></p>', __( 'Created with ' ), __( ' on behalf of ' ), __( 'Casa de Sueno' ), __( ' by ' ), __( 'GeckoGrafix' ) );
return $output;
}