Making WordPress.org

Ticket #2100: 2100.diff

File 2100.diff, 1.2 KB (added by xkon, 7 years ago)

Fixed the author link

  • classes/tggr-source-google.php

     
    264264                                'name'     => $postmeta['author_name'][0],
    265265                                'username' => $postmeta['author_name'][0],
    266266                                'image'    => $postmeta['author_image_url'][0],
     267                'userId'    => $postmeta['author_id'][0],
    267268                        );
    268269
    269270                        $item['itemMeta'] = array(
  • javascript/components/google/index.jsx

     
    2828
    2929                return (
    3030                        <div className={ item.itemMeta.cssClasses }>
    31                                 <a className="tggr-author-profile clearfix" href={ url + author.username } rel="nofollow">
     31                                <a className="tggr-author-profile clearfix" href={ url + author.userId } rel="nofollow">
    3232                                        { author.image && <img src={ author.image } alt="" className="tggr-author-avatar" /> }
    3333                                        <span className="tggr-author-name">{ author.name }</span>
    3434                                        <span className="tggr-author-username">@{ author.username }</span>