我正在WordPress上构建一个单页主题。
我的左侧有文字,想在右侧插入图片,但是当我尝试通过代码添加图片时,我收到此错误消息:
解析错误:语法错误,意外的'template_directory'(T_STRING),期待','或';'在第21行的/var/www/wordpress/wp-content/themes/CVTheme2015/front-page.php
是否有任何可以帮助我的论坛或视频教程?
<div class="indent">
<section id="meet">
<?php
$query = new WP_Query('pagename=about-us-single');
//The Loop
if ($query ->have_posts()){
while ($query->have_posts() ) {
$query->the_post();
echo '<h1 class="section-title">' . get_the_title() . '</h1>';
echo '<div class="page">';
the_content();
echo '</div>';
echo '<div class="sun_and_wind">';
echo '<img src="<?php bloginfo('template_directory'); ?>/images/logo.jpg" />;'
echo '</div>';
}
}
/* Restore original Post Data */
wp_reset_postdata();
?>
</section>
</div>
我想创建类似下面的屏幕截图:
答案 0 :(得分:0)
试试这个..
$dir = bloginfo('template_directory');
echo "<img src='$dir/images/logo.jpg' />;"