• Tentei adicionar Thumbnails em um Custom Post Type mas nem funciona.
    Alguém já passou por isso e sabe resolver? Segue código. VLW

    FUNCTIONS

    add_action( 'init', 'create_post_type' );
    function create_post_type() {
      register_post_type( 'eventos',
    	array(
    	  'labels' => array(
    		'name' => __( 'Eventos' ),
    		'singular_name' => __( 'Eventos' )
    	  ),
    	  'public' => true,
    	)
      );
    
    }
    
    register_taxonomy(
    "categorias",
    	  "eventos",
    	  array(
    		"label" => "Categorias",
    			"singular_label" => "Categoria",
    			"rewrite" => true,
    			"hierarchical" => true
    )
    );
    
    add_theme_support( 'post-thumbnails', array( 'post', 'eventos' ) );

    CHAMANDO O POST

    <?php $newsArgs = array( 'post_type' => 'eventos', 'posts_per_page' => 18);
    				$newsLoop = new WP_Query( $newsArgs );
    				while ( $newsLoop->have_posts() ) : $newsLoop->the_post();?>
    
    				<div class="one-fourth">
    				    <h1><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h1>
    				</div>
    
    			<?php endwhile; ?>
Visualizando 1 resposta (de um total de 1)
  • Embaixo de 'public' => true,

    adicione isso:

    'supports' => array('title','editor', 'thumbnail')

    O que ele faz? Ele adiciona o campo do Título, o editor de conteúdo e o campo do Thumbnail dentro Custom Post Type.

Visualizando 1 resposta (de um total de 1)
  • O tópico ‘Thumbnails em Custom Post Types não funcionam’ está fechado para novas respostas.