Results 1 to 3 of 3

Thread: How to make user only see their own post?

  1. #1
    Thread Starter
    Amateur khong's Avatar
    Join Date
    Jul 2010
    Location
    Malaysia
    Posts
    10
    Thanks
    0
    Thanked 0 Times in 0 Posts

    How to make user only see their own post?

    Hi,

    I have question regarding User access.

    I would like to make the users to be able to see only their own listing in wp-admin dashboard. User A only can see the listing posted by himself, User B only can see the listing posted by herself. If they have never made any post before, then it shall display the list without posts. Currently it will display the lists to view.

    I have tried to put following code at function.php in the theme but it now work. I refer this steps from internet.

    function posts_for_current_author($query) {
    if($query->is_admin) {
    global $user_ID;
    $query->set('author', $user_ID);
    }
    return $query;
    } add_filter('pre_get_posts', '
    posts_for_current_author');


    Problem with this code: Not able to add new listing. It will display a blank page when "Add New".

    ** I did use this plugin from http://www.shinephp.com/user-role-ed...dpress-plugin/

    Pls help. Thanks.

  2. #2
    Thread Starter
    Amateur khong's Avatar
    Join Date
    Jul 2010
    Location
    Malaysia
    Posts
    10
    Thanks
    0
    Thanked 0 Times in 0 Posts
    You must be an AppThemes customer and logged in to view this response. Join today!

  3. #3
    Veteran bluecafe's Avatar
    Join Date
    Apr 2010
    Location
    Berlin
    Posts
    1,563
    Thanks
    58
    Thanked 359 Times in 273 Posts
    You must be an AppThemes customer and logged in to view this response. Join today!

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. How to make post-block clickable?
    By binh in forum ClassiPress General Discussion
    Replies: 2
    Last Post: May 23rd, 2012, 05:15 AM
  2. Replies: 3
    Last Post: January 27th, 2012, 05:04 AM
  3. How can i make a coupon that can be used only one time per user ?
    By donatelloii in forum Report ClassiPress Bugs
    Replies: 2
    Last Post: June 8th, 2011, 05:56 AM
  4. How to make job ads automatically post to Twitter?
    By elleoh in forum Report ClassiPress Bugs
    Replies: 3
    Last Post: May 25th, 2011, 09:59 AM
  5. How to make job ads automatically post to Twitter?
    By elleoh in forum Report JobRoller Bugs
    Replies: 5
    Last Post: January 4th, 2011, 04:36 AM