• i was recoding twenty ten theme and i accidentally deleted the site title codes! now i don’t know which code i deleted because instead of appearing my site title’s name…it appears as mozilla firefox eventhough i typed the name in the dashboard general settings..still doesn’t appear..

    does anyone know what are the codes for site title so i can just paste it back!

    thanks!

Viewing 10 replies - 1 through 10 (of 10 total)
  • This is the default <title> code for Twenty Ten:

    <title><?php
    	/*
    	 * Print the <title> tag based on what is being viewed.
    	 */
    	global $page, $paged;
    
    	wp_title( '|', true, 'right' );
    
    	// Add the blog name.
    	bloginfo( 'name' );
    
    	// Add the blog description for the home/front page.
    	$site_description = get_bloginfo( 'description', 'display' );
    	if ( $site_description && ( is_home() || is_front_page() ) )
    		echo " | $site_description";
    
    	// Add a page number if necessary:
    	if ( $paged >= 2 || $page >= 2 )
    		echo ' | ' . sprintf( __( 'Page %s', 'twentyten' ), max( $paged, $page ) );
    
    	?></title>
    Thread Starter ohpinkybrain

    (@ohpinkybrain)

    hi again boda..

    those codes are still visible in my header.php

    unfortunately, the site title doesnt appear either. if you visit https://www.blog.shoppilicious.com/ you will notice the site title is mozilla firefox..

    thanks again..

    Throw your header up on Pastebin, and link it.

    @ohpinkybrain

    GOTO SETTINGS->GENERAL in ADMIN and set the all settings. there site title is blank.

    Thread Starter ohpinkybrain

    (@ohpinkybrain)

    hi boda82..

    header.php>> https://pastebin.com/hFYJvVKh

    theres nothing missing..

    style.css>> https://pastebin.com/XQUsrWBN

    i think i might have deleted something in style.css!
    i didnt touch the functions or index…

    thanks.

    remove this

    <title><?php
    	/*
    	 * Print the <title> tag based on what is being viewed.
    	 */
    	global $page, $paged;
    
    	wp_title( '|', true, 'right' );
    
    	// Add the blog name.
    	bloginfo( 'name' );
    
    	// Add the blog description for the home/front page.
    	$site_description = get_bloginfo( 'description', 'display' );
    	if ( $site_description && ( is_home() || is_front_page() ) )
    		echo " | $site_description";
    
    	// Add a page number if necessary:
    	if ( $paged >= 2 || $page >= 2 )
    		echo ' | ' . sprintf( __( 'Page %s', 'twentyten' ), max( $paged, $page ) );
    
    	?></title>

    Once.

    And try this <title><?php wp_title( '|', true, 'right' );?></title>

    First glance looks correct. Are you running any caching plugins? If so, clear out the cache (or disable it completely for testing).

    Thread Starter ohpinkybrain

    (@ohpinkybrain)

    hi boda.. tested it. still doesnt work ??

    Backup your header.php, remove all the code between the title tags, and simply put “Shoppilicious”. Does it still not display the title?

    (FYI: I suggest you disable that caching mod, as well as clear your browsers cache while you’re testing this stuff. Once everything’s working you can turn it back on.)

    I had the same problem and found the solution.
    Under Appearance>Editor select the theme to edit: I had two similar themes listed in the drop-down menu: mysite & Mysite>mysite
    I selected Mysite>mysite from the dropdown and edited the header.php file replacing the title with this:

    <title><?php
    	/*
    	 * Print the <title> tag based on what is being viewed.
    	 */
    	global $page, $paged;
    
    	wp_title( '|', true, 'right' );
    
    	// Add the blog name.
    	bloginfo( 'name' );
    
    	// Add the blog description for the home/front page.
    	$site_description = get_bloginfo( 'description', 'display' );
    	if ( $site_description && ( is_home() || is_front_page() ) )
    		echo " | $site_description";
    
    	// Add a page number if necessary:
    	if ( $paged >= 2 || $page >= 2 )
    		echo ' | ' . sprintf( __( 'Page %s' ), max( $paged, $page ) );
    
    	?></title>

    It worked a treat. Hope this helps.

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘Site title missing’ is closed to new replies.