Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ループ内の単一のページにいて、試行するすべてのクエリが NULL を返します。例えば:
<?php global $wpdb; $users=$wpdb->get_results( "SELECT * FROM wp_users" ); echo '<pre>'; var_dump( $data ); ?>
ここで何が間違っていますか?どのクエリを試しても問題ありません...すべてがNULLを返します
$data ではなく $users を埋めています。試してみてください
echo '<pre>'; print_r( $users );