Daha iyi bir yol var - aynı zamanda da bu fonksiyonu kullanabilirsiniz -
function catch_that_image() {
global $post, $posts;
$first_img = '';
ob_start();
ob_end_clean();
$output = preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $post->post_content, $matches);
$first_img = preg_replace("/_thumb[0-9]\./", "$1.", $first_img);
// no image found display default image instead
if(empty($first_img)){
$first_img = "/wp-content/default.png";
}
return $first_img;
}
Eğer tema sizin functions.php için bu işlevi eklemek eğer ekleyebilirsiniz
<img src="<?php echo catch_that_image(); >" width="50" height="50" alt="<?php the_title(); ?>" />
Lütfen single.php ve index.php
Bu fonksiyon, şimdiye sonrası ilk görüntü yakalamak olacaktır ve kimse varsa, onu gösterecektir - bu değiştirebileceğiniz tek Standart resim kullanacağız ...
Ya da başka bir yol:
<?php $image = get_post_meta($post->ID, 'postimage', true); ?>
<img src="<?php echo $image; ?>" alt="<?php the_title(); ?>" />
Eğer index.php bu koymak ya Single.php Eğer (ileti / sayfalarında customfield) alan "postimage" verilen resim kullanacağız.
Bu yardımcı olur umarım