Conversation
supportI set auth=’false’ but the author name still shows https://wordpress.org/plugins/mygwd-rss/
Hi Dethfire, The code that controls whether auth is displayed or not is: if( $a['auth'] != false ) : $author = $item->get_author(); $content .= '<small> by <strong>' . $author->get_name() . '</strong></small>'; endif; Try using auth=0 (without quotes) so it is not sent as a string. The next version will simply not display anything unless it is enabled through the shortcode to get around this.
Hi Dethfire, The code that controls whether auth is displayed or not is: if( $a['auth'] != false ) : $author = $item->get_author(); $content .= '<small> by <strong>' . $author->get_name() . '</strong></small>'; endif; Try using auth=0 (without quotes) so it is not sent as a string. The next version will simply not display anything unless it is enabled through the shortcode to get around this.