wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
_post_format_link is private and should not be used in themes or plugins directly.
_post_format_link › WordPress Function
Seit3.1.0
Veraltetn/v
› _post_format_link ( $link, $term, $taxonomy )
| Zugriff: |
|
| Parameter: (3) |
|
| Gibt zurück: |
|
| Definiert in: |
|
| Codex: |
Filters the post format term link to remove the format prefix.
Ähnliche Funktionen: get_post_format_link, post_permalink, get_post_format_string, get_post_format_strings, has_post_format
Quellcode
function _post_format_link( $link, $term, $taxonomy ) {
global $wp_rewrite;
if ( 'post_format' !== $taxonomy ) {
return $link;
}
if ( $wp_rewrite->get_extra_permastruct( $taxonomy ) ) {
return str_replace( "/{$term->slug}", '/' . str_replace( 'post-format-', '', $term->slug ), $link );
} else {
$link = remove_query_arg( 'post_format', $link );
return add_query_arg( 'post_format', str_replace( 'post-format-', '', $term->slug ), $link );
}
}