タイトルの変更
現在
タイトルが
jQuery Mobile
となっているので、これをサイト名に変更します
header.php の
1 | < h1 >jQuery Mobile</ h1 > |
の部分を
1 | <h1><?php bloginfo( 'name' ); ?></h1> |
にします
これでテンプレを使っているので
ダッシュボードでサイト名を変更しても自動更新してくれます
今回の変更で header.php のソースは以下のようになります
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | <!DOCTYPE html> <html> <head> <meta charset= "<?php bloginfo('charset'); ?>" /> <meta name= "viewport" content= "width=device-width, initial-scale=1" /> <title><?php if (!is_home()){ wp_title( '|' ,true, 'right' ); } bloginfo( 'name' ); ?></title> <link rel= "stylesheet" type= "text/css" href= "<?php echo get_stylesheet_uri(); ?>" > <link rel= "stylesheet" </script> <?php wp_head(); ?> </head> <body <?php body_class(); ?>> <div data-role= "page" data-title= "jQuery Mobile" > <div data-role= "header" > <h1><?php bloginfo( 'name' ); ?></h1> </div> <div role= "main" class = "ui-content" > |