background image

如果您使用的是 wordpress 博客系统,可以把该文件 says.php 放到主题根目录下,然后修
改主题根目录下的 header.php

 

,插入一条语句到前面:

代码如下:
 
<?php 

include

(dirname(

__file__

)."/says.php"); ?> 

 

 

然后在你想显示随机名人名言的位置插入如下语句:
says(); 
这样就可以调用了。对 wordpress 系统不是很了解,这个方法肯定不是最好的方法。