Show Users own posts in account page

Hello, I have built wxawards.co.uk. I’m looking to change up the account page and one of the things I’d like to do is show the nominations they have submitted in a post list and the status of said post be that published, already nominated etc.

Is this possible? I’m pretty sure it is within cornerstone just need a little help getting started.

Hello Daniel,

Thanks for writing in!

You will need to use Looper Provider Query String and use this query argument:

$args = array(
    'post_type' => 'post', // Change to your custom post type if needed
    'author' => $user_id,
    'posts_per_page' => -1, // Display all posts by the user
);

The $user_id can be a dynamic content {{dc:user:id}}. You must transform the argument above into a query string so that you can use it in your looper. Check out the old thread below for your reference:

Best Regards.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.