Tôi có một kịch bản PHP mà tôi cần để chạy như một công việc định kỳ. Tuy nhiên kịch bản này cần truy cập vào API WP ( get_pages()
, get_post_meta()
và get_permalink()
cụ thể). Tôi đã làm theo các hướng dẫn tại http://codex.wordpress.org/Integrating_WordPress_with_Your_Website , nhưng không có kết quả.
Mã số:
require_once('../../../wp-blog-header.php');
$args = array(
'child_of' => 2083
);
$pages = get_pages($args);
Tuy nhiên, khi tôi chạy php -q this_file.php
từ dòng lệnh, tôi nhận được đầu ra sau:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Database Error</title>
</head>
<body>
<h1>Error establishing a database connection</h1>
</body>
</html>
Bất cứ ai có bất kỳ suy nghĩ / đề nghị?
get_pages
, anh ta cần lớp WP. vì vậy wp-blog-header.php là tệp phù hợp để gọi.