Kodlar bana aittir...
<h4>Random Gallery</h4>
<ul>
<?php $posts = get_posts('orderby=rand&numberposts=1'); foreach($posts as $post) { ?>
<?php $id =$post->ID;
$the_content =$wpdb->get_var("SELECT post_content FROM $wpdb->posts WHERE ID = $id");
$pattern = '!<img.*?src="(.*?)"!';
preg_match_all($pattern, $the_content, $matches);
$image_src = $matches['1'][0]; ?>
<li>
<img src="<?php if($image_src != '') { echo $image_src; } ?>" alt="<?php the_title(); ?>" width="200px" height="200px" />
</li>
<?php } ?>
</ul>istediğiniz yere koyabilirisiniz
sidebar
index
single
css ile süslemeyi unutmayın
Tema yazdıkça yenilikler gelecek