wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



get_post_format_link › WordPress Function

Seit3.1.0
Veraltetn/v
get_post_format_link ( $format )
Parameter:
  • (string) $format The post format slug.
    Erforderlich: Ja
Gibt zurück:
  • (string|WP_Error|false) The post format term link.
Definiert in:
Codex:

Returns a link to a post format index.



Quellcode

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 );
}