force_suppress_filters = true
- Tipo
- action
- Categoria
- Recupero dei contenuti localizzati
- Versione di WPML
- 4.7.2
Descrizione
Per impostazione predefinita, il plugin WPML Media Translation filtra le query degli allegati per lingua. Ciò avviene impostando suppress_filters=false per le funzioni get_posts integrate. L’azione force_suppress_filters sovrascrive questa impostazione per permetterti di recuperare tutti gli allegati in tutte le lingue contemporaneamente.
Esempio di utilizzo
Esempio
$posts = get_posts( array(
'post_type' => 'attachment',
'numberposts' => -1,
'force_suppress_filters' => true, // Argument to allow get_posts ignore WPML action that makes suppres_filter=false and query all attachments
));
Hook correlati
wpml_media_url, wpml_media_id, wpml_get_translated_slug, wpml_home_url, wpml_translate_single_string, wpml_translate_string, wpml_elements_without_translations, wpml_permalink, wpml_unfiltered_admin_string, wpml_element_link
Tutti i 12 hook della categoria Recupero dei contenuti localizzati →