Quantcast
Channel: Últimos conteúdos
Viewing all articles
Browse latest Browse all 14190

Custom Post Type não funciona

$
0
0

Oi tudo bem?

Eu criei um custom post type, porém ele simplesmente não aparece no meu painel, o código é o seguinte:

function register_cpt_retiradas() {
    register_post_type( 'retiradas',
        array(
            'labels' => array(
                'name' => __( 'Retiradas' ),
                'singular_name' => __( 'Retirada' )
            ),
            'public' => true
        )
    );
}

Tem algo errado?

Obrigado


Viewing all articles
Browse latest Browse all 14190

Trending Articles