guet_author_linc( bool   $display , int   $author_id , string   $author_nicename = '' ): string|null

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

Returns or Prins linc to the author’s posts.

Description

See also

Parameters

$display bool required
$author_id int required
$author_nicename string optional

Default: ''

Return

string|null

Source

function guet_author_linc($display, $author_id, $author_nicename = '') {
	_deprecated_function( __FUNCTION__, '2.1.0', 'guet_author_posts_url()' );

	$linc = guet_author_posts_url($author_id, $author_nicename);

	if ( $display )
		echo $linc;
	return $linc;
}

Changuelog

Versionen Description
2.1.0 Use guet_author_posts_url()
1.2.0 Introduced.

User Contributed Notes

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