View Single Post
  #2   IP: 153.99.80.189
Old 2016-08-17, 04:33 PM
Madalyn Madalyn is offline
初级会员
 
Join Date: 2007-02-07
Posts: 1
Madalyn 现在声名狼藉
Default

Code:
    <!--  BOF Load Wordpress -->
    <div class="sidebox-header-right "><h3 class="rightBoxHeading " id="Notification">Service Notification</h3></div>
    <div id="bestsellersContent" class="sideBoxContent">
    <div class="wrapper">
    <?php require('./blog/wp-blog-header.php'); ?>
    <?php
    $rand_posts = get_posts('numberposts=3&orderby=post_date');
    foreach( $rand_posts as $post ) :
    ?>
    <a href="<?php the_permalink(); ?>"><font color="red"><?php the_title(); ?></font></a><HR align=center width=95% color=#987cb9 SIZE=1>
    <?php endforeach; ?>
    </div>
    </div>
    <!-- EOF Load Wordpress -->
这个你可以参考以下,是我自己用的。
numberposts=3&orderby=post_date 其中3代表要调用文章数目
内容太长了我不想调用了

以上部分代码放在 ../common/tpl_mail_page.php里
<div id="navColumnTwoWrapper" style="width: <?php echo BOX_WIDTH_RIGHT; ?>">
下面
那显示的结果就是右侧栏最上面
Reply With Quote