特定のユーザーによる投稿の最終変更/作成日を取得して、それをエコーしたい。
私がやろうとしていることは次のとおりです。
<?php $id = get_the_ID();
global $current_user;
$current_user = wp_get_current_user();
$postID = $id; //assigning post id
$userID = $current_user->ID; // assigning user ID
$sql = "SELECT post_date FROM wp_posts WHERE ID = $postID AND post_author = $userID ORDER BY post_date DESC LIMIT 1";
$userModifiedDate = $wpdb->query($sql);
echo $userModifiedDate; ?>
私の間違いはどこですか?誰かが私をこれに導くことができますか?
現時点で$userModifiedDate
は私を返します1
。