I am creating an author.php page and listing all the posts from an author. Although admins can see the posts’ edit links i want to echo the link if logged in user is the current user
for example
if testuser is logged in and current page is /author/testuser he can see edit post links
but
if testuser is logged in and current page is /author/theee he cant see the links
currently i have
$curauth = (isset($_GET['author_name'])) ? get_user_by('slug', $author_name) : get_userdata(intval($author));
$th = $curauth->nickname;
$cu = $current_user->user_login;
if ( $th = $curauth ) {
edit_post_link('edit', '', '');
} else {
}
but still only admins can see the links.
If you just have to modify the author.php page, this piece of code will probably work :
The first part of the conditions checks if there is a user logged.
The second one will be true if the current page is the author page of the current user.
I think the post edit link should be visible to post author and moderator(editor user or how have that capability)
So my proposed code is like this
Placed in your theme’s
functions.php
this should globally alter the behavior ofedit_post_link
. It should work on all of your archives, not just your author archives– anything that usesedit_post_link
.If will only work reliably inside a Loop, which is the only place you should be using
edit_post_link
anyway.If you want this to work only for your author archive pages, just paste that code before the Loop in the
author.php
template and don’t put it infunction.php
. It shouldn’t effect anything but that page then. Or you can just use the guts for the function to make your conditional, like you were trying to do.I could not get the @Mat solution to work. It looks correct, however.
WP stores the value of $post->post_author as a string. However,
get_the_author_meta( 'ID' )
andget_current_user_id()
each return an integer, so strict comparison works in the second part of the IF statement.If you replace
get_the_author_meta( 'ID' )
with$post->post_author
you must use==
and not===
as the comparison operator because the value of $post->post_author is a string andget_current_user_id()
returns an integer.Test:
Solution using strict comparison operator that works for me: