Quantcast
Channel: Topic Tag: footer | WordPress.org
Viewing all articles
Browse latest Browse all 13547

stephencottontail on "[Theme: ComicPress] Edit Copyright with Child Theme for Comicpress"

$
0
0

Sorry, my mistake. In your child theme's functions.php, try something like this:

<?php

function comicpress_copyright_text() {
	$output = "<p class=\"copyright-info\">\r\n";
	$output .= "<span>© 2014 - <a href=\"http://rowrowboatsportfoliosite.com/\">rowrowboat</a>";
	$output .= "</span>\r\n";
	if (!comicpress_themeinfo('disable_scroll_to_top')) {
		$output .= "<span class=\"footer-uptotop\">";
		$output .= "<span class=\"footer-pipe\">|</span> ";
		$output .= "<a href=\"#outside\" onclick=\"scrollup(); return false;\">".__('Back to Top ↑','comicpress')."</a>";
		$output .="</span>\r\n";
	}
	$output .= "</p>\r\n";
	echo apply_filters('comicpress_copyright_text', $output);
}
?>

You'd replace "http://rowrowboatsportfoliosite.com/" with the URL to your portfolio site and the rowrowboat immediately afterwards with your own name.


Viewing all articles
Browse latest Browse all 13547

Trending Articles