मेरे पास एक PHP स्क्रिप्ट है जिसे मुझे क्रॉन जॉब के रूप में चलाने की आवश्यकता है। हालांकि इस स्क्रिप्ट WP एपीआई लिए उपयोग की जरूरत ( 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 कॉल करने के लिए सही फ़ाइल थी।