Sadece bu yazı kalsın istiyorum
Copyright © 2017 Facts and More. All rights reserved.
Kodlar aşağıda . Nasıl düzeltebilirim
*/
if ( ! function_exists( 'colormag_footer_copyright' ) ) :
function colormag_footer_copyright() {
$site_link = '' . get_bloginfo( 'name', 'display' ) . '';
$wp_link = '' . __( 'WordPress', 'colormag' ) . '';
$tg_link = ''.__( 'ThemeGrill', 'colormag') .'';
$default_footer_value = sprintf( __( 'Copyright © %1$s %2$s. All rights reserved.', 'colormag' ), date( 'Y' ), $site_link ).'
'.sprintf( __( 'Theme: %1$s by %2$s.', 'colormag' ), 'ColorMag', $tg_link ).' '.sprintf( __( 'Powered by %s.', 'colormag' ), $wp_link );
$colormag_footer_copyright = '
'.$default_footer_value.'
';
echo $colormag_footer_copyright;
}
endif;