Theme Customizr Logo Issue
-
if ur logo is not display then copy this code into functions.php
and enjoyadd_action( ‘__after_logo’ , ‘display_my_site_title’);
function display_my_site_title() {
//first checks if there is a logo uploaded
$logo_src = esc_url ( tc__f( ‘__get_option’ , ‘tc_logo_upload’) ) ;
if ( empty($logo_src) )
echo “<img src=’http://acj.nixclick.com/acj/wp-content/uploads/2014/05/11.png’>”;
return;//then print the site title after
printf(‘<h1>%4$s</h1>’,
esc_url( home_url( ‘/’ ) ),
esc_attr( get_bloginfo( ‘name’) ),
esc_attr( get_bloginfo( ‘description’ ) ),
esc_attr( get_bloginfo( ‘name’) )
);
}
The topic ‘Theme Customizr Logo Issue’ is closed to new replies.