wpseek.com
A WordPress-centric search engine for devs and theme authors
_post_format_request is private and should not be used in themes or plugins directly.
_post_format_request › WordPress Function
Since3.1.0
Deprecatedn/a
› _post_format_request ( $qvs )
Access: |
|
Parameters: |
|
Returns: |
|
Defined at: |
|
Codex: |
Filters the request to allow for the format prefix.
Related Functions: _post_format_get_term, _post_format_get_terms, get_post_format_string, post_format_meta_box, _post_format_link
Source
function _post_format_request( $qvs ) { if ( ! isset( $qvs['post_format'] ) ) { return $qvs; } $slugs = get_post_format_slugs(); if ( isset( $slugs[ $qvs['post_format'] ] ) ) { $qvs['post_format'] = 'post-format-' . $slugs[ $qvs['post_format'] ]; } $tax = get_taxonomy( 'post_format' ); if ( ! is_admin() ) { $qvs['post_type'] = $tax->object_type; } return $qvs; }