W3cubDocs

/WordPress

get_post_format_link( string $format ): string|WP_Error|false

Returns a link to a post format index.

Parameters

$formatstringrequired
The post format slug.

Return

string|WP_Error|false The post format term link.

Source

function get_post_format_link( $format ) {
	$term = get_term_by( 'slug', 'post-format-' . $format, 'post_format' );
	if ( ! $term || is_wp_error( $term ) ) {
		return false;
	}
	return get_term_link( $term );
}

Changelog

Version Description
3.1.0 Introduced.

© 2003–2024 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/get_post_format_link