1
Andor_Chen 2014-03-19 20:00:41 +08:00
1. 不要用简写的 tag,用 <?php ?>;
2. 图片的路径取决于你的图片放在哪儿,一般如果放在主题文件夹中可以这么写:<?php echo get_template_directory_uri() . 'images/pc_bt.png'; ?> 多看 WordPress Codex |
2
qiayue 2014-03-19 20:34:35 +08:00 1
<?=$foo?> 相当于 <?php echo $foo;?>
<?php the_content(); ?> 是调用 the_content() 函数,<?=the_content()?> 是调用 the_content() 函数,并且打印函数返回值。 |