0

我将如何在 WordPress 中过滤我的帖子或第一张图片,然后再显示添加到主题的 CSS 类。我看到我可以在我的functions.php 中使用API​​ 中的add_filter() 函数,但是我在获取每个帖子的第一张图片时遇到了问题。

<a href="http://localhost/wordpress/wp-content/uploads/2012/10/test.jpg">
<img class="alignnone size-full wp-image-95" width="540" height="300" alt="dell-vs-apple" src="http://localhost/wordpress/wp-content/uploads/2012/10/dell-vs-apple1.jpg">
</a>


<div class = "my_class">
<a href="http://localhost/wordpress/wp-content/uploads/2012/10/dell-vs-apple1.jpg">
<img class="alignnone size-full wp-image-95" width="540" height="300" alt="dell-vs-apple" src="http://localhost/wordpress/wp-content/uploads/2012/10/dell-vs-apple1.jpg">
</a>

4

1 回答 1

0

这是从帖子中获取第一张图片的一种方法..

  // Get URL of first image in a post
    function o99_find_first_post_image() {
        global $post, $posts;
        $first_img = '';
        ob_start();
        ob_end_clean();
        $output = preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $post->post_content, $matches);
        $first_img = $matches [1] [0];

        // if no image found we can choose to display some default image instead
        if(empty($first_img)){
            $first_img = "/images/default.jpg";// path to default image
        }
        return $first_img;
    }
于 2013-02-14T13:11:14.173 回答