您的位置:首页 > 其它

Zen-cart产品页面随机调用Wordpress文章

2014-03-29 11:22 351 查看
<?php require('./wordpress所在目录/wp-blog-header.php'); ?>
<?php
$rand_posts = get_posts('numberposts=5&orderby=rand');
foreach( $rand_posts as $post ) :
?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endforeach; ?>

注:$rand_posts = get_posts('numberposts=5&orderby=rand');这里的5指调用随机文章数量
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: