ДА! Таможенные Типы Почты были решением. Ответ полностью изложен здесь: текст ссылки
По сути, я добавил это в свой файл functions.php:
add_action ('init', 'create_my_post_types');
function create_my_post_types() {
register_post_type( 'current_issue',
array(
'labels' => array(
'name' => __( 'Current Issues' ),
'singular_name' => __( 'Current Issue' )
),
'public' => true,
'exclude_from_search' => true,
'supports' => array( 'title', 'editor', 'thumbnail' ),
)
);
}
А затем добавил это в мой файл homepage.php:
<?php $loop = new WP_Query( array( 'post_type' => 'current_issue', 'posts_per_page' => 1 ) ); ?>
<?php while ( $loop->have_posts() ) : $loop->the_post(); ?>
<?php the_post_thumbnail( 'current-issue' ); ?>
<?php the_title( '<h2><a href="' . get_permalink() . '" title="' . the_title_attribute( 'echo=0' ) . '" rel="bookmark">', '</a></h2>' ); ?>
<div class="readmore" style="margin-top:4px">
<a href="#">Read More</a>
</div>
<?php the_content(); ?>
<?php endwhile; ?>
Отлично сработало!