想知道图像被拉到哪里

时间:2011-07-14 04:52:09

标签: php css

我是css和编码的新手,但我想知道在下面的代码中,它是从帖子中提取的。我不希望这个页面拉图片......它是从博客文章和页面中提取的...我是否有可以放置的代码以确保它不会拉动图像?

感谢

<style>
    #para1{ text-align:center;}

    .bdr_blb{ 
        border:#000000 solid 4px;
        height:70px;
        background:#cccccc;
        text-align:center;
        font-size:14px; font-weight:700;}

    .light32{ font-size:32px;}

    .bggrey{ background:#cccccc;}

    .light18{ font-size:18px;}

    #bedroom4{
        background:#cccccc;
    }

    .heading_div{float:left;}

    .entry-content{float:left;}

    .thumnail_col ul li {
        float: left;
        list-style: none outside none;
        margin-right: 15px;
    }

    .thumnail_col ul li img{background:none; border:none;}

</style>

?>

    <div id="container">
        <div id="" role="main">
            <?php $args = array( 'category_name' => 'lease', 'orderby' => 'title' ,'order' => 'ASC' );
                        $loop = new WP_Query( $args );
                        while ( $loop->have_posts() ) : $loop->the_post();

                        if ($count==1)
                        {
                            echo "<tr>";
                        }
                        ?>
                       <td><div class="lease">
                            <div class="heading_div"><h2 class="entry-title"><strong><u>
                        <?php
                                                    echo '<a href="'.get_bloginfo('url').'/lease/'.$loop->post->post_name.'" target="_blank">'.$loop->post->post_title.'</a>';
                        ?>
                        </u></strong></div></h2>
                            <div class="entry-content">
                                <div class="desc">
                        <?php
                            the_content();
                        ?>
                        </div>

                        </div></div></td>
                        <?php
                        if($count==$number_of_columns)
                        {
                        echo "</tr>"; 
                        $count=0;
                        }   
                        $count++;

                        endwhile;
                    ?>

        </div><!-- #content -->
    </div><!-- #container -->

1 个答案:

答案 0 :(得分:0)

您需要找到定义函数the_content();的位置。某处,寻找:

function the_content()

在该函数定义内部是可能代码,它回显出<img>标记。删除或注释掉该部分代码。在我们看到该函数的定义之前,我们无法确定修改它的其他后果。

<强>更新

这不会阻止浏览器加载图像,但阻止浏览器实际显示。它比追踪函数定义更容易修改PHP。

在上面发布的代码顶部的<style>标记内,添加此内容(它可以放在那里的任何位置):

.entry-content img {display: none;}

即使浏览器下载了图像,这也只是告诉CSS不显示图像。