wpseek.com
Uma área de pesquisa sobre o WordPress para devs e autores do tema



_wp_preview_terms_filter › WordPress Function

Desde3.6.0
Obsoleton/a
_wp_preview_terms_filter ( $terms, $post_id, $taxonomy )
Acesso:
  • private
Parâmetros: (3)
  • (array) $terms
    Required: Yes
  • (int) $post_id
    Required: Yes
  • (string) $taxonomy
    Required: Yes
Retorna:
  • (array)
Definido em:
Codex:

Filters terms lookup to set the post format.



Fonte

function _wp_preview_terms_filter( $terms, $post_id, $taxonomy ) {
	$post = get_post();

	if ( ! $post ) {
		return $terms;
	}

	if ( empty( $_REQUEST['post_format'] ) || $post->ID !== $post_id
		|| 'post_format' !== $taxonomy || 'revision' === $post->post_type
	) {
		return $terms;
	}

	if ( 'standard' === $_REQUEST['post_format'] ) {
		$terms = array();
	} else {
		$term = get_term_by( 'slug', 'post-format-' . sanitize_key( $_REQUEST['post_format'] ), 'post_format' );

		if ( $term ) {
			$terms = array( $term ); // Can only have one post format.
		}
	}

	return $terms;
}