うさぎのイラスト

ネットアンサー55備忘録

web技術を書いていきます

index.phpに書き換える(パスの修正)

-2015年02月26日-
◎index.phpのなかのパスの修正 修正前:
<link rel="shortcut icon" href="images/favicon.ico">

<link rel="stylesheet" type="text/css" media="all" href="./style.css">
修正後:
<link rel="shortcut icon" href="<?php echo get_template_directory_url(); ?>/images/favicon.ico">

<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo('stylesheet_url'); ?>"/>
  • サイト名の表示        'name'
  • サイトURLの表示      'url'
  • このウェブの簡単な説明  'description'
  • 文字コード          'charset'
  • テンプレートのURL    'template_url' (画像の表示はこれに置き換える。)
このブログのURL
<?php echo home_url(); ?>