wordpress如何调用有图片的文章

2024年10月16日 建站教程

以下是基础代码,根据自己需要进行修改!

<?php
$rand_posts = get_posts('numberposts=8&orderby=rand'); //循环随机显示文章数
foreach( $rand_posts as $post ) :
?>
<dl>
  <?php
    $litpic = get_post_meta($post->ID, 'litpic', true);
    if (empty ( $litpic )) { //没有图片的文章
      echo '';
    }
    else { //显示有图片的文章
      echo '<dt><a href="'.get_permalink().'" title="'.trim(strip_tags( $post->post_title )).'"><img src="/static'. $litpic .'"/></a></dt>';
    } ?>
      <dd class="title"><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></dd>
</dl>
<?php endforeach; ?>

本文链接:http://so.lmcjl.com/news/15511/

展开阅读全文
相关内容