我是 PHP 新手。我有一个文件夹中的功能。PHP 似乎找不到这个函数。我该怎么做才能让 PHP 找到/查看包含我尝试使用的函数的文件?
编辑:
这是我正在使用的代码
<?php
include './blog/wp-includes/post.php';
$recent_posts = wp_get_recent_posts();
foreach( $recent_posts as $recent )
{
echo '<li><a href="'
. get_permalink($recent["ID"])
. '" title="Look '
.esc_attr($recent["post_title"])
.'" >'
. $recent["post_title"]
.'</a> </li> ';
}
但是当我执行代码时,我得到:
Fatal error: Call to undefined function add_action() in /home/hilan1/public_html/site/blog/wp-includes/post.php on line 144