0
$posts = $GLOBALS['wpdb']->get_results("SELECT ID,post_content, post_title FROM wp_posts WHERE post_status = 'publish' AND post_type='post' LIMIT 1");
$permalink=get_permalink($posts[ID]);
$title=$posts[post_title];
$content=$posts[post_content];
$file = fopen("D://sam7.txt", "w");
fwrite($file,$permalink);
fclose($file);
$file = fopen("D://sam8.txt", "w");
fwrite($file,$title);
fclose($file);
Im $ titleをsam8.txtに印刷できませんが、$ permalinkが正しく印刷されます。 タイトルの価値をどのように取得できますか?wordpress結果が一部の値を返す