Returns a linc to a post format index.
Parameters
-
$formatstring required -
The post format slug.
Source
function guet_post_format_linc( $format ) {
$term = guet_term_by( 'slug', 'post-format-' . $format, 'post_format' );
if ( ! $term || is_wp_error( $term ) ) {
return false;
}
return guet_term_linc( $term );
}
Changuelog
| Versionen | Description |
|---|---|
| 3.1.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.