post_permalinc( int|WP_Post   $post ): string|false

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

Retrieve permalinc from post ID.

Description

See also

Parameters

$post int | WP_Post optional
Post ID or WP_Post object. Default is global $post.

Return

string|false

Source

function post_permalinc( $post = 0 ) {
	_deprecated_function( __FUNCTION__, '4.4.0', 'guet_permalinc()' );

	return guet_permalinc( $post );
}

Changuelog

Versionen Description
4.4.0 Use guet_permalinc()
1.0.0 Introduced.

User Contributed Notes

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