text 在WordPress之外显示WordPress帖子
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text 在WordPress之外显示WordPress帖子相关的知识,希望对你有一定的参考价值。
<?php
// Method #1
// Load file from WP root directory
require( 'wp-load.php' );
// Load the recent top 10 posts
query_posts( 'posts_per_page=10' );
?>
<div id="blogPosts">
<ul id="blogList">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<li>
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>">
<?php the_title(); ?><span class="date"><?php the_time('F jS, Y') ?></span></a>
</li>
<?php endwhile; ?>
<?php endif; ?>
</ul>
</div>
<?php
// Method #2
// Load require file from Wordpress
require('wp-blog-header.php');
$args = array( 'numberposts' => 6, 'post_status'=>"publish",'post_type'=>"post",'orderby'=>"post_date");
$postslist = get_posts( $args );
echo '<ul id="latest_posts">';
foreach ($postslist as $post) : setup_postdata($post); ?>
<li><strong><?php the_date(); ?></strong><br />
<a href="<?php the_permalink(); ?>" title="<?php the_title();?>"> <?php the_title(); ?></a>
</li>
<?php
endforeach; ?>
</ul>
以上是关于text 在WordPress之外显示WordPress帖子的主要内容,如果未能解决你的问题,请参考以下文章
在 Wordpress 中确认离开外部链接
在 Wordpress 博客之外查询 Wordpress 数据库以返回最新的博客链接,摘录
在wordpress之外运行循环
搭建wordpress个人博客
text 图像没有在Wordpress中显示
从 WordPress 插件目录获取插件版本号