Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9183081
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T18:42:57+00:00 2026-06-17T18:42:57+00:00

I want to get post last modification/craetion dates by particular users and then echo

  • 0

I want to get post last modification/craetion dates by particular users and then echo it.

What I’m trying to do is:

<?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; ?>

Where is my mistake? Can anyone lead me through this?

At the moment $userModifiedDate returns me 1.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T18:42:59+00:00Added an answer on June 17, 2026 at 6:42 pm

    $wpdb->query() returns the number of rows affected rather than the actual query result.

    http://codex.wordpress.org/Class_Reference/wpdb#Run_Any_Query_on_the_Database

    Try using a more specific function such as $wpdb->get_var() or $wpdb->get_results():

    $userModifiedDate = $wpdb->get_var( $sql );
    

    http://codex.wordpress.org/Class_Reference/wpdb#SELECT_a_Variable

    Also, while it’s not absolutely necessary, I always like to pass any queries through $wpdb->prepare() first:

    $sql = $wpdb->prepare( "SELECT post_date FROM wp_posts WHERE ID = %d AND post_author = %d ORDER BY post_date DESC LIMIT 1", $postID, $userID );
    

    http://codex.wordpress.org/Class_Reference/wpdb#Protect_Queries_Against_SQL_Injection_Attacks

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

With php file_get_contents() i want just only the post and image. But it's get
Im trying to get the last string from a URL for example... http://www.mywebsite/blog/this-post I
I want to get IDs of users which are subscribed to one post but
I want to get possibility to select several Categories for one Post with multiple
In symfony 2 controllers, every time I want to get a value from post
For example in some cases after POST or GET request I want to redirect
I want my program to get notification each time someone makes a post to
Following up on the following post: Get last row PER Group Let's say you
I want to get values of a multiple select check box using request.POST['xzy'] as
I have two tables, posts and sections. I want to get the last 10

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.