Check to see if we have an author before displaying it. See #9948.
git-svn-id: http://svn.automattic.com/wordpress/trunk@11471 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
a3c2702e3a
commit
68a6949d44
|
@ -823,8 +823,10 @@ function wp_widget_rss_output( $rss, $args = array() ) {
|
|||
$author = '';
|
||||
if ( $show_author ) {
|
||||
$author = $item->get_author();
|
||||
$author = $author->get_name();
|
||||
$author = ' <cite>' . esc_html( strip_tags( $author ) ) . '</cite>';
|
||||
if ( is_object($author) ) {
|
||||
$author = $author->get_name();
|
||||
$author = ' <cite>' . esc_html( strip_tags( $author ) ) . '</cite>';
|
||||
}
|
||||
}
|
||||
|
||||
if ( $link == '' ) {
|
||||
|
|
Loading…
Reference in New Issue