在Wordpress中修改网页

时间:2015-06-08 16:48:52

标签: php html wordpress

我是一名初学者,我正在尝试修改网页,以便在我的网站上使用。我创建了一个子主题,它出现在我的wp仪表板中。我已将我希望通过ftp使用的图像上传到我的服务器上。我修改了几个儿童主题页面上的编码,以包含我的图像,但没有任何内容出现。

此代码来自我的custom-header.php页面 -

<?php $header_image = get_header_image();
    if ( ! empty( $header_image ) ) { ?>
        <a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home">
            **<img src="<?php echo get_template_directory_uri();?>/Legion-Scotland.jpg">?>" alt="Legion-Logo" />**
        </a>
<?php } // if ( ! empty( $header_image ) ) ?>

任何帮助都会受到最多的赞赏,因为这是一个过期的大学项目。

谢谢

1 个答案:

答案 0 :(得分:0)

你有一个错字

<img src="<?php echo get_template_directory_uri();?>/Legion-Scotland.jpg">?>" alt="Legion-Logo" />

将其替换为

<img src="<?php echo get_template_directory_uri();?>/Legion-Scotland.jpg" alt="Legion-Logo" />