ฉันมีสคริปต์ PHP ที่ฉันต้องใช้เป็นงาน cron แต่สคริปต์นี้ต้องการการเข้าถึง WP API ( get_pages()
, get_post_meta()
และget_permalink()
โดยเฉพาะ) ฉันได้ทำตามคำแนะนำที่http://codex.wordpress.org/Integrating_WordPress_with_Your_Websiteแต่ไม่มีประโยชน์
รหัส:
require_once('../../../wp-blog-header.php');
$args = array(
'child_of' => 2083
);
$pages = get_pages($args);
อย่างไรก็ตามเมื่อฉันเรียกใช้php -q this_file.php
จากบรรทัดคำสั่งฉันได้รับผลลัพธ์ต่อไปนี้:
<!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>
ใครมีความคิดเห็น / ข้อเสนอแนะ?
get_pages
เขาต้องมีคลาส WP ดังนั้น wp-blog-header.php เป็นไฟล์ที่เหมาะสมในการโทร