Back to Top link in footer or page
-
Hello, I had a function made that would put an image in the footer but now I need the back to top button to available as well. The current custom filter that I use now removes the back to top button.
add_filter('tc_colophon_right_block', 'my_image'); function my_image(){ $img_url = get_stylesheet_directory_uri().'/imgs/hdfooterlogo.png'; //put your image in child-theme/imgs $width = '250px'; $height = '79px'; $img = '<a href="https://www.hunterdouglas.com/"><img alt="logo" src="'.$img_url.'" width="'.$width.'" height="'.$height.'" class="pull-right"></a>'; return '<div class="span4 right-image">'.$img.'</div>'; }
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘Back to Top link in footer or page’ is closed to new replies.