スタイルシートを相対パスで書きだす

 <?php $dir = get_template_directory_uri() ; //テーマディレクトリ?>

<?php //wp関数とは同じ括りに入れられないらしい。syntaxErrになる
 $pos = strpos((string)$dir , '/' ,8 );
 $sdir= substr($dir, $pos, strlen($dir)-$pos);
?>

<link rel="stylesheet" href="<?=$sdir ?>/style.css" type="text/css" />
<!--ついでにこれも-->
 <link href="<?=$sdir ?>/favicon.gif" rel="shortcut icon">

Categories:

Tags: