cron 작업으로 실행해야하는 PHP 스크립트가 있습니다. 그러나이 스크립트는 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가 호출 할 올바른 파일이었습니다.