Wordpress允许您使用wp-load.php轻松地在外部(在任何其他php页面上)显示博客帖子,然后此代码:
<?php while (have_posts()): the_post(); ?>
<b><?php the_title(); ?>
<?php the_date('d/m/y'); ?>
</b><br/>
<?php the_excerpt();?>
<?php endwhile; ?>
但我无法弄清楚如何从外部显示内容。谷歌没有帮助。是简单的事情
<?php the_page('pagename'); ?>
可能?
谢谢!