Warning: ftp_nlist() expects parameter 1 to be resource, null given in /home/creativebx01/nichiyoubi.jp/public_html/wp-admin/includes/class-wp-filesystem-ftpext.php on line 427

Warning: ftp_pwd() expects parameter 1 to be resource, null given in /home/creativebx01/nichiyoubi.jp/public_html/wp-admin/includes/class-wp-filesystem-ftpext.php on line 230

Warning: ftp_pwd() expects parameter 1 to be resource, null given in /home/creativebx01/nichiyoubi.jp/public_html/wp-admin/includes/class-wp-filesystem-ftpext.php on line 230

Warning: ftp_pwd() expects parameter 1 to be resource, null given in /home/creativebx01/nichiyoubi.jp/public_html/wp-admin/includes/class-wp-filesystem-ftpext.php on line 230

Warning: ftp_nlist() expects parameter 1 to be resource, null given in /home/creativebx01/nichiyoubi.jp/public_html/wp-admin/includes/class-wp-filesystem-ftpext.php on line 427

Warning: ftp_pwd() expects parameter 1 to be resource, null given in /home/creativebx01/nichiyoubi.jp/public_html/wp-admin/includes/class-wp-filesystem-ftpext.php on line 230

Warning: ftp_pwd() expects parameter 1 to be resource, null given in /home/creativebx01/nichiyoubi.jp/public_html/wp-admin/includes/class-wp-filesystem-ftpext.php on line 230

Warning: ftp_pwd() expects parameter 1 to be resource, null given in /home/creativebx01/nichiyoubi.jp/public_html/wp-admin/includes/class-wp-filesystem-ftpext.php on line 726

Warning: ftp_nlist() expects parameter 1 to be resource, null given in /home/creativebx01/nichiyoubi.jp/public_html/wp-admin/includes/class-wp-filesystem-ftpext.php on line 427

Warning: ftp_pwd() expects parameter 1 to be resource, null given in /home/creativebx01/nichiyoubi.jp/public_html/wp-admin/includes/class-wp-filesystem-ftpext.php on line 230

Warning: ftp_pwd() expects parameter 1 to be resource, null given in /home/creativebx01/nichiyoubi.jp/public_html/wp-admin/includes/class-wp-filesystem-ftpext.php on line 230

Warning: ftp_pwd() expects parameter 1 to be resource, null given in /home/creativebx01/nichiyoubi.jp/public_html/wp-admin/includes/class-wp-filesystem-ftpext.php on line 230

Warning: ftp_nlist() expects parameter 1 to be resource, null given in /home/creativebx01/nichiyoubi.jp/public_html/wp-admin/includes/class-wp-filesystem-ftpext.php on line 427

Warning: ftp_pwd() expects parameter 1 to be resource, null given in /home/creativebx01/nichiyoubi.jp/public_html/wp-admin/includes/class-wp-filesystem-ftpext.php on line 230

Warning: ftp_pwd() expects parameter 1 to be resource, null given in /home/creativebx01/nichiyoubi.jp/public_html/wp-admin/includes/class-wp-filesystem-ftpext.php on line 230

Warning: ftp_pwd() expects parameter 1 to be resource, null given in /home/creativebx01/nichiyoubi.jp/public_html/wp-admin/includes/class-wp-filesystem-ftpext.php on line 726

Warning: ftp_mkdir() expects parameter 1 to be resource, null given in /home/creativebx01/nichiyoubi.jp/public_html/wp-admin/includes/class-wp-filesystem-ftpext.php on line 569

Warning: ftp_nlist() expects parameter 1 to be resource, null given in /home/creativebx01/nichiyoubi.jp/public_html/wp-admin/includes/class-wp-filesystem-ftpext.php on line 427

Warning: ftp_pwd() expects parameter 1 to be resource, null given in /home/creativebx01/nichiyoubi.jp/public_html/wp-admin/includes/class-wp-filesystem-ftpext.php on line 230

Warning: ftp_pwd() expects parameter 1 to be resource, null given in /home/creativebx01/nichiyoubi.jp/public_html/wp-admin/includes/class-wp-filesystem-ftpext.php on line 230

ワードプレスのテンプレートタグget_postsなどで取得した配列を確認する方法

何のことはない、printf_r関数を使うだけです。
ですが、毎度毎度記述するのは面倒なので、サンプルを残しておきます。

[php]
$postvalue=get_post_custom($post->ID);echo $postvalue[image][0];
echo "<pre>";
print_r($postvalue);
echo "</pre>";
echo $postvalue[image][0];
[/php]