Created
August 18, 2021 23:35
-
-
Save luiseduardobraschi/d7268df9fcb098714422fa333e1fb28a to your computer and use it in GitHub Desktop.
Permitir que etiquetas sejam geradas e status customizados.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Adicionar status permitido para gerar etiquetas. | |
add_filter( 'arti_me_labels_generation_allowed_statuses', function( $statuses ){ | |
$statuses[] = 'id_do_seu_status'; | |
// $statuses[] = 'id_de_outro_status'; | |
return $statuses; | |
} ); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment