0

我相信我已经为我正在开发的(超级基本)wordpress 主题正确地获取了 html 中的图像;但是它仍然没有显示。

此对话: 本地计算机上的 Img Src 显示了到目前为止的过程(因此我确信 html 是正确的。)

index.php 的主体:

<?php
    $main_menu_column_top = array(
        'theme_location' => 'main-nav-column-top',
        'container' => 'nav',
        'container_class' => 'alignleft widecol',
        'container_id' => 'column-main-nav',
        'depth' => 1
    );
?>

<div class="leftcolumn">
    <div class="logo">
        <a href="http://www.petermaurin.com">
        <img src="images/pmsplogo.jpg" alt="Peter Maurin Screenprinters"/></a>
    </div><!--logo-->

    <div>
        <ul>
            <h1><?php wp_nav_menu ( $main_menu_column_top ); ?></h1>
        </ul>
    </div>
</div>

<div class="maincontent">

    <?php 
        if (have_posts()) :
            while (have_posts()) :
                the_post();
                the_title();
                the_content();
            endwhile;
        endif;
    ?>

    </div><!-- maincontent -->

函数.php:

<?php
register_nav_menus(
        array(
        'main-nav-column-top' => 'Main Nav, Top of Header',
        'sub-nav-column-bottom' => 'Sub Nav, Bottom of Header',
        'footer-nav' => 'Footer Menu'
    )
);

CSS:

* {
margin: 0;
padding: 0;
}

p {
font-family: Times New Roman;
}

body {
    font-size: 100%;
    font-family: sans-serif;
    background: url(images/tshirttexture.jpg) left repeat-y #0099ff;
}

.leftcolumn{
    width:365px;    
    float:left;
}

.maincontent{
    background-color:green;
    margin-left: 375px;
    max-width: 600px;
}

...如果有人可以看一下并告诉我为什么我的图片(index.php 第 26 行上的“pmsplogo.jpg”)没有显示,我将不胜感激!

4

2 回答 2

2

在 img 元素中,sr​​c 属性应如下所示

<?php bloginfo( 'template_url' );?>/images/pmsplogo.jpg

所以基本上完​​整的图片网址将是:

<img src="<?php bloginfo( 'template_url' );?>/images/pmsplogo.jpg" alt="Peter Maurin Screenprinters"/>
于 2013-03-02T03:45:59.723 回答
0
<img src="<?php echo 'dirname(__FILE__)'.'/images/pmsplogo.jpg'?>" />

不要在 PHP 中写上“ http://www.yoursitename.com/ ”,他们找不到源代码。

于 2013-03-02T04:17:52.260 回答