Tell me more ×
WordPress Answers is a question and answer site for WordPress developers and administrators. It's 100% free, no registration required.

I want to add " my posts " to main menu. by clicking on this, each logged-in user will see his/her own posts.

I don't know how the link structure should be to add on the menu.

Thanks

share|improve this question

1 Answer

You could use this:

<a href="<?php echo home_url() . '/author/' . get_the_author_meta( 'user_login', wp_get_current_user()->ID ); ?>" >My Posts</a>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.