尝试稍微修改标题部分以符合标准。现在是您的代码:
<div id="header-image">
<img width="1102" height="350" alt="" class="header-image" src="http://onofri.org/example/wp-content/uploads/2013/06/header1.jpg">
</div>
您可以通过以下方式修改内容:
<div id="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(); ?>/images/logo.png" alt="Logo" width="HERE" height="HERE" />
</a>
</div>
现在只有3个步骤:
- 除了使用主题的默认标题图像设置之外,您还可以
header.php
使用上面提供的代码来编辑主题。
- 您可以通过cPanel(Web主机的控制面板)将图像上传到主题文件夹的子文件夹“ images”中,而不是从“添加新媒体”中插入图像。
- 并且不要在徽标中制作带有背景的大图像,而应尝试在Photoshop(或任何图形软件)中制作简单的无背景徽标-如果是Photoshop,请这样做:将徽标图像放置在图层中后,只需删除即可在背景图层中保存图像,然后保存为Web图像(“文件”>“保存为Web ... [ Ctrl+ Alt+ Shift+ S]”),然后选择PNG-24格式以获得良好效果。然后将其另存为
logo.png
,并将其放置到“ / wp-content / themes / simplemarket / images /”文件夹中。
希望你能得到其余的。如有任何疑问,请在下面随意评论。