老猫博客-zen-cart wordpress 文章调用只显示首页
安装woz失败之后,在自己的网站了 代码,以让网站首页能调用wordpress文章,
以下为代码内容,自己的学习记录!
其中黑色部分,是定义让文章连接只显示在首页,如果你想让他不在首页显示,可以这样写this_is_home_page != 1,这样就是只让他显示在除了首页的部分!
以下让文章连接只显示在首页为原代码
<code><?php
if ($this_is_home_page) {
?>
<div><?php require(‘./博客文件夹的名字/wp-blog-header.php’); ?>
<?php
$rand_posts = get_posts(‘numberposts=8&orderby=rand’);
foreach( $rand_posts as $post ) :
?>
<li align=”left”><a href=”<?php the_permalink(); ?>”><?php the_title(); ?></a></li>
<?php endforeach; ?>
</div>
<?
}
?>
</code>
老猫博客:http://laomao.info