Replies: 0
Hey,
Can you please delete the letters ‘fn’ in the following line of citation code from the perfect-pullquotes.php
$citeText = ‘<span itemprop=”name fn”>’.strip_tags( $a[‘cite’] ).'</span>’;
The fn creates a lot of errors in the Structured Data section of Google Webmaster Tools as ‘fn’ is not recognized. By simply dropping the fn, it fixes the whole problem. I.e.
$citeText = ‘<span itemprop=”name”>’.strip_tags( $a[‘cite’] ).'</span>’;
Regards,