我在我网站的子目录中有一个 wordpress 博客,并在我的主页上显示了一些最新的帖子。为此,请使用以下代码
<?php
// Include WordPress
define('WP_USE_THEMES', false);
require('blog/wp-load.php');
query_posts('showposts=1');
?>
<?php
require('blog/wp-blog-header.php');
?>
<?php query_posts('showposts=4'); ?>
<?php while (have_posts()) : the_post(); ?>
<h5><?php the_title(); ?></h5>
<p><a href="<?php the_permalink(); ?>"><?php the_excerpt(); ?></a></p>
<?php endwhile;?>
我一直试图弄清楚它是否可能在页面加载后执行此代码,因为这会减慢我的页面速度。我尝试使用 body onLoad 函数,它确实正确执行了代码,但生成的 html 不显示
<body onLoad="init();">
<script language="javascript">
function init()
{
ABOVE CODE IN HERE
}
</script>
</body>
谁能告诉我该怎么做