index.phpに書き換える(パスの修正)
-2015年02月26日-
◎index.phpのなかのパスの修正
修正前:
1 | <link rel= "shortcut icon" href= "images/favicon.ico" > |
3 | <link rel= "stylesheet" type= "text/css" media= "all" href= "./style.css" > |
修正後:
1 | <link rel= "shortcut icon" href= "<?php echo get_template_directory_url(); ?>/images/favicon.ico" > |
3 | <link rel= "stylesheet" type= "text/css" media= "all" href= "<?php bloginfo('stylesheet_url'); ?>" /> |
- サイト名の表示 'name'
- サイトURLの表示 'url'
- このウェブの簡単な説明 'description'
- 文字コード 'charset'
- テンプレートのURL 'template_url'
(画像の表示はこれに置き換える。)
このブログのURL
1 | <?php echo home_url(); ?> |