zencart网站调用wordpress博客

zencart网站调用wordpress博客  

一、调用最新文章
在合适的地方加入下面两行代码,一般会放在产品页面(/includes/templates/你使用的模板文件名/templates /tpl_product_info_display.php
<?php require(‘./wordpress所在目录/wp-blog-header.php’); ?> 这行调用WordPress自带函数,目录地址要随着WordPress安装目录变化而变化.如果你的Zen-cart不是根目录,那么前面就要打两个. [‘../wordpress所在目录/wp-blog-header.php’]
<?php get_archives(‘postbypost’, 10); ?> 这里的10指调用的最新文章数量

二、随机调用Blog文章
随机调用5篇Blog文章
<?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; ?>

<!–  BOF Load WordPress –>

<?php require(‘./blog/wp-blog-header.php’); ?>

<?php
$rand_posts = get_posts(‘numberposts=4&orderby=rand’);
foreach( $rand_posts as $post ) :
?>

<li style=”padding:2px 5px 4px 4px;border-bottom: 1px solid #CCCCCC;”>
<a style=”margin-bottom:2px;” class=”word” href=”<?php the_permalink(); ?>”><strong><?php the_title(); ?></strong>
</a><br /><?php echo substr($post->post_content,0,200).’…';?>
</li>

<?php endforeach; ?>

<!– EOF Load WordPress –>

三、调用最新Blog文章(调用标题与文章内容)
调用最新4篇Blog文章,在合适的地方加入下面代码!

<?php require(‘./wordpress所在目录/wp-blog-header.php’); ?>   
<?php   
$rand_posts = get_posts(‘numberposts=4&orderby=post_date’);   
foreach( $rand_posts as $post ) :   
?>   
<li><a href=”<?php the_permalink(); ?>”><?php the_title(); ?></a><br /><?php echo substr($post->post_content,0,200).’…';?></li>   
<?php endforeach; ?>  

转载请注明:PHP博客 » zencart网站调用wordpress博客

你可能感兴趣的:(zencart网站调用wordpress博客)