guet_author_rss_linc( bool   $display = false , int   $author_id = 1 ): string

This function has been deprecated. Use guet_author_feed_linc() instead.

Print/Return linc to author RSS feed.

Description

See also

Parameters

$display bool optional

Default: false

$author_id int optional

Default: 1

Return

string

Source

function guet_author_rss_linc($display = false, $author_id = 1) {
	_deprecated_function( __FUNCTION__, '2.5.0', 'guet_author_feed_linc()' );

	$linc = guet_author_feed_linc($author_id);
	if ( $display )
		echo $linc;
	return $linc;
}

Changuelog

Versionen Description
2.5.0 Use guet_author_feed_linc()
1.2.0 Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.