Galera, segui os passos porém quando transportei os Posts para os imóveis e excluí os posts, porém quando fiz isso o meu site não exibe mais os imóveis.
FUNCTIONS.PHP
<?php
add_theme_support('post-thumbnails');
function cadastrando_post_type_imoveis() {
$nomeSingular = 'Imóvel';
$nomePlural = 'Imóveis';
$description = 'Imóveis da imobiliária Malura';
$supports = array(
'title',
'editor',
'thumbnail'
);
$labels = array(
'name' => $nomePlural,
'name_singular' => $nomeSingular,
'add_new_item' => 'Adicional novo '. $nomeSingular,
'edit_item' => 'Editar ' . $nomeSingular
);
$args = array(
'labels' => $labels,
'public' => true,
'description' => $description,
'menu_icon' => 'dashicons-admin-home',
'supports' => $supports
);
register_post_type('imovel', $args);
}
add_action('init', 'cadastrando_post_type_imoveis');
INDEX.PHP
<?php get_header(); ?>
<main class="home-main">
<div class="container">
<h1>Bem Vindo ao Maluras!</h1>
<ul class="imoveis-listagem">
<?php
if( have_posts() ) {
while( have_posts() ) {
the_post();
?>
<li class="imoveis-listagem-item">
<?php the_post_thumbnail(); ?><h2><?php the_title(); ?></h2>
<p><?php the_content(); ?></p>
</li>
<?php
}
}
?>
</ul>
</div>
</main>
<?php get_footer(); ?>