Advertisement
Guest User

Untitled

a guest
May 16th, 2016
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.44 KB | None | 0 0
  1.  /*редактируем ссылку ответа на комментарий для неавторизованных*/
  2. function custom_comment_reply_link_change( $link ) {
  3.     if ( get_option( 'comment_registration' ) && ! is_user_logged_in() )       
  4.         $link = '<a rel="nofollow" class="rcl-login" href="#">Авторизуйтесь, что бы ответить</a>';
  5.     return $link;
  6. }
  7. add_filter( 'comment_reply_link', 'custom_comment_reply_link_change' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement