这是没有出现图像的错误页面, http: //kokas.x10.mx/?page_id =64
我创建了一个名为sharing-page.php 的文件,将它放在我的活动主题下,然后将它应用到一个页面。我还将图像文件夹放置在与 php 文件相同的级别。我的图像标签是这样的<img src="images/facebook.png" alt="Facebook" />
,但显然有问题。
shared-page.php 文件的内容
<?php
/*
Template Name: Sharing
*/
?>
<div id='page-wrap-sharing'>
<header>
<h1>Nodig je vrienden uit</h1>
<h2>Nodig je vrienden uit en verdien geld bij elke verzoek.</h2>
</header>
<div id='main-content-sharing'>
<section id='share-buttons'>
<h3>Sociale netwerken</h3>
<h4>Stuur een uitnodiging naar al je vrienden op sociale netwerken.</h4>
<ul>
<li><a href="http://www.facebook.com/sharer.php?u=http://fray.it" target="_blank"><img src="images/facebook.png" alt="Facebook" /></a></li><!-- Facebook -->
<li><a href="http://twitter.com/share?url=http://fray.it" target="_blank"><img src="images/twitter.png" alt="Twitter" /></a></li><!-- Twitter -->
<li><a href="https://plus.google.com/share?url=http://fray.it" target="_blank"><img src="images/google.png" alt="Google" /></a></li><!-- Google Plus -->
<li><a href="mailto:?Subject=Welcome to Fray&Body=I%20saw%20this%20and%20thought%20of%20you!%20 http://fray.it"><img src="images/email.png" alt="Email" /></a></li><!-- Email -->
</ul>
<p>We delen je contacten met niemand zonder jou toestemming.</p>
</section>
</div> <!-- END main-content -->
</div>
<?php get_footer(); ?>